Skip to content

Commit

Permalink
Enable focal build
Browse files Browse the repository at this point in the history
  • Loading branch information
RadxaYuntian authored Feb 1, 2023
1 parent af34a9d commit 75ef2ea
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
matrix:
boards: [rock-4c-plus]
build_systems: [rbuild, armbian]
distros: [debian, ubuntu]
distros: [debian, ubuntu, focal]
flavors: [kde, cli]
exclude:
- build_systems: debos
Expand All @@ -43,6 +43,10 @@ jobs:
- build_systems: debos
distros: ubuntu
flavors: kde
- build_systems: debos
distros: focal
- build_systems: armbian
distros: focal
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -66,10 +70,19 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload rbuild image
uses: radxa-repo/rbuild@main
if: matrix.build_systems == 'rbuild'
if: matrix.build_systems == 'rbuild' && matrix.distros != 'focal'
with:
board: ${{ matrix.boards }}
distro: ${{ matrix.distros }}
flavor: ${{ matrix.flavors }}
release-id: ${{ needs.prepare_release.outputs.release_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload rbuild legacy image
uses: radxa-repo/rbuild@main
if: matrix.build_systems == 'rbuild' && matrix.distros == 'focal'
with:
board: ${{ matrix.boards }}
suite: ${{ matrix.distros }}
flavor: ${{ matrix.flavors }}
release-id: ${{ needs.prepare_release.outputs.release_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 75ef2ea

Please sign in to comment.