Skip to content

Commit

Permalink
Run tiny builds in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
legoktm committed Mar 28, 2024
1 parent 7a7c983 commit 615c69f
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ on: [push, pull_request]
jobs:
vanilla:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- tiny5.15
- tiny6.6
outputs:
artifact_id: ${{ steps.upload.outputs.artifact-id }}
steps:
Expand All @@ -14,8 +20,8 @@ jobs:
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y make build-essential

- name: Build vanilla kernel
run: make vanilla
- name: Build tiny kernel
run: make ${{ matrix.target }}

- uses: actions/upload-artifact@v4
id: upload
Expand All @@ -26,6 +32,12 @@ jobs:

vanilla2:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- tiny5.15
- tiny6.6
outputs:
artifact_id: ${{ steps.upload.outputs.artifact-id }}
steps:
Expand All @@ -36,7 +48,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y make build-essential

- name: Build vanilla kernel
run: make vanilla
run: make ${{ matrix.target }}

- uses: actions/upload-artifact@v4
id: upload
Expand Down

0 comments on commit 615c69f

Please sign in to comment.