Skip to content

Commit

Permalink
Allow core builds to run on ubuntu-latest during testsuite
Browse files Browse the repository at this point in the history
Signed-off-by: Dani Llewellyn <[email protected]>
  • Loading branch information
Dani Llewellyn committed Mar 2, 2023
1 parent bd4fba8 commit 4d87652
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
strategy:
matrix:
base:
- core
- core18
- core20
- core22
Expand All @@ -33,20 +32,52 @@ jobs:
- ''
- 'true'
- 'false'
runner:
- ubuntu-latest
include:
- base: core
arch: ''
usePodman: 'false'
runner: ubuntu-18.04
- base: core
arch: ''
usePodman: 'true'
runner: ubuntu-18.04
- base: core
arch: i386
usePodman: 'false'
runner: ubuntu-18.04
- base: core
arch: i386
usePodman: 'true'
- base: core
arch: amd64
usePodman: 'false'
runner: ubuntu-18.04
- base: core
arch: amd64
usePodman: 'true'
- base: core
arch: armhf
usePodman: 'false'
runner: ubuntu-18.04
- base: core
arch: armhf
usePodman: 'true'
- base: core
arch: arm64
usePodman: 'false'
runner: ubuntu-18.04
- base: core
arch: arm64
usePodman: 'true'
- base: core18
arch: i386
usePodman: 'false'
- base: core18
arch: i386
usePodman: 'true'
runs-on: ubuntu-latest
runs-on: ${{ matrix.runner }}
steps:
- uses: docker/setup-qemu-action@v2
- uses: actions/checkout@v3
Expand Down

0 comments on commit 4d87652

Please sign in to comment.