diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-06 22:01:17 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-06 22:01:17 -0400 |
commit | a612e3237157e3141634951dc63048eab295e1e9 (patch) | |
tree | f6c005db7a93deb11ea8727dfab015c81201ad2e /.github/workflows/cicd.yml | |
parent | 5adf5344bfa4388a70c054308447c64c06b98265 (diff) |
ci/cd: Bootstrap project before toolchain
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to '.github/workflows/cicd.yml')
-rw-r--r-- | .github/workflows/cicd.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index bf98b57..08fd22d 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -18,9 +18,9 @@ jobs: run: sudo apt-get install -y flex bison libfl-dev libmpc-dev - name: Install tools run: sudo apt-get install -y lld clang xorriso mtools - - name: Build toolchain - run: cd src/; tools/build-toolchain.sh - name: Bootstrap project run: cd src/; tools/bootstrap + - name: Build toolchain + run: cd src/; tools/build-toolchain.sh - name: Build system run: cd src/; make |