Skip to content

Commit 91b4817

Browse files
committed
ci: Add bootc and image build on ARM
Signed-off-by: Xiaofeng Wang <[email protected]>
1 parent a7d8b80 commit 91b4817

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/integration.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ jobs:
88
strategy:
99
matrix:
1010
test_os: [fedora-42]
11+
test_runner: [ubuntu-latest, ubuntu-24.04-arm]
1112

12-
runs-on: ubuntu-latest
13+
runs-on: ${{ matrix.test_runner }}
1314

1415
steps:
1516
- name: Install podman for heredoc support
@@ -31,13 +32,15 @@ jobs:
3132
sudo chmod 0755 /tmp/tmp-bootc-build/id_rsa
3233
3334
- name: Archive bootc disk image - disk.raw
35+
if: matrix.test_runner == 'ubuntu-latest'
3436
uses: actions/upload-artifact@v4
3537
with:
3638
name: PR-${{ github.event.number }}-${{ matrix.test_os }}-disk
3739
path: /tmp/tmp-bootc-build/disk.raw
3840
retention-days: 1
3941

4042
- name: Archive SSH private key - id_rsa
43+
if: matrix.test_runner == 'ubuntu-latest'
4144
uses: actions/upload-artifact@v4
4245
with:
4346
name: PR-${{ github.event.number }}-${{ matrix.test_os }}-id_rsa

0 commit comments

Comments
 (0)