Skip to content

Initial commit: LFS build scripts and documentation #40

Initial commit: LFS build scripts and documentation

Initial commit: LFS build scripts and documentation #40

Workflow file for this run

name: LFS Build
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential bison gawk texinfo
- name: Validate scripts
run: |
bash -n *.sh || true
- name: Check script permissions
run: |
chmod +x *.sh
- name: Lint shell scripts
run: |
sudo apt-get install -y shellcheck
shellcheck *.sh || true