diff options
author | Ian Moffett <ian@osmora.org> | 2025-03-14 12:02:36 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-03-14 12:02:36 -0400 |
commit | 509942a2f0167032e96b5130aebf95dfa1d14c4c (patch) | |
tree | 4737ad5b9e6675cd17034e3e53d76784287fd415 /.github | |
parent | 6ceef43179c70852f001f1205ff92ebba4d0d4d7 (diff) | |
parent | f7b53e3e49c428e7cee7ebe51ebcb261c9d4f02a (diff) |
Merge branch 'expt'
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cicd.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml new file mode 100644 index 0000000..ad6d236 --- /dev/null +++ b/.github/workflows/cicd.yml @@ -0,0 +1,24 @@ +name: CI on-push +on: + push: + branches: + - main + - expt +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Update system + run: sudo apt-get update + - name: Export envs + run: export TERM="headless" + - name: Install libs + run: sudo apt-get install -y flex bison libfl-dev + - name: Install tools + run: sudo apt-get install -y lld clang xorriso + - name: Bootstrap and configure + run: ./bootstrap && ./configure + - name: Build world with clang + run: make |