File tree Expand file tree Collapse file tree 1 file changed +8
-14
lines changed Expand file tree Collapse file tree 1 file changed +8
-14
lines changed Original file line number Diff line number Diff line change 17
17
18
18
jobs :
19
19
archive :
20
- runs-on : ${{ matrix.os }}
20
+ runs-on : ${{ matrix.host-arch == 'arm64' && 'ubuntu-24.04-arm' || matrix.host-arch == 'x64' && 'ubuntu-latest' || null }}
21
21
22
22
container :
23
23
image : docker.io/library/debian
24
24
25
25
strategy :
26
26
fail-fast : false
27
27
matrix :
28
- include :
29
- - host-arch : x64
30
- os : ubuntu-latest
31
- - host-arch : arm64
32
- os : ubuntu-24.04-arm
28
+ host-arch :
29
+ - x64
30
+ - arm64
33
31
34
32
steps :
35
33
- name : Install build tools
62
60
build :
63
61
needs : [archive]
64
62
65
- runs-on : ${{ matrix.os }}
63
+ runs-on : ${{ matrix.host-arch == 'arm64' && 'ubuntu-24.04-arm' || matrix.host-arch == 'x64' && 'ubuntu-latest' || null }}
66
64
67
65
permissions :
68
66
actions : write
@@ -77,17 +75,13 @@ jobs:
77
75
matrix :
78
76
include :
79
77
- host-arch : x64
80
- target-arch : x64
81
- os : ubuntu-latest
78
+ target-arch : arm
82
79
- host-arch : x64
83
80
target-arch : arm64
84
- os : ubuntu-latest
85
- - host-arch : x64
86
- target-arch : arm
87
- os : ubuntu-latest
88
81
- host-arch : x64
89
82
target-arch : riscv64
90
- os : ubuntu-latest
83
+ - host-arch : x64
84
+ target-arch : x64
91
85
92
86
steps :
93
87
- name : Download Artifact
You can’t perform that action at this time.
0 commit comments