File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
matrix :
10
10
test_os : [fedora-42]
11
+ test_runner : [ubuntu-latest, ubuntu-24.04-arm]
11
12
12
- runs-on : ubuntu-latest
13
+ runs-on : ${{ matrix.test_runner }}
13
14
14
15
steps :
15
16
- name : Install podman for heredoc support
@@ -31,13 +32,15 @@ jobs:
31
32
sudo chmod 0755 /tmp/tmp-bootc-build/id_rsa
32
33
33
34
- name : Archive bootc disk image - disk.raw
35
+ if : ${{ matrix.test_runner == ubuntu-latest }}
34
36
uses : actions/upload-artifact@v4
35
37
with :
36
38
name : PR-${{ github.event.number }}-${{ matrix.test_os }}-disk
37
39
path : /tmp/tmp-bootc-build/disk.raw
38
40
retention-days : 1
39
41
40
42
- name : Archive SSH private key - id_rsa
43
+ if : ${{ matrix.test_runner == ubuntu-latest }}
41
44
uses : actions/upload-artifact@v4
42
45
with :
43
46
name : PR-${{ github.event.number }}-${{ matrix.test_os }}-id_rsa
You can’t perform that action at this time.
0 commit comments