File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -109,16 +109,14 @@ jobs:
109
109
110
110
build-builder-image :
111
111
name : Build the builder image
112
- runs-on : ubuntu-24.04
113
- # Multiarch builds sometimes take for eeeeeeeeeever
114
- timeout-minutes : 480
112
+ runs-on : ${{ (matrix.arch == 'amd64' && 'ubuntu-24.04') || 'ubuntu-24.04-arm' }}
115
113
needs :
116
114
- builder-needs-rebuilding
117
115
if : needs.builder-needs-rebuilding.outputs.build-image == 'true'
118
116
strategy :
119
117
fail-fast : false
120
118
matrix :
121
- arch : [amd64]
119
+ arch : [amd64, arm64 ]
122
120
123
121
env :
124
122
PLATFORM : linux/${{ matrix.arch }}
@@ -130,12 +128,6 @@ jobs:
130
128
with :
131
129
submodules : true
132
130
133
- - name : Set up QEMU
134
- uses : docker/setup-qemu-action@v3
135
-
136
- - name : Set up Docker Buildx
137
- uses : docker/setup-buildx-action@v3
138
-
139
131
- name : Create ansible vars
140
132
run : |
141
133
cat << EOF > ${{ github.workspace }}/ansible/secrets.yml
@@ -171,7 +163,7 @@ jobs:
171
163
strategy :
172
164
fail-fast : false
173
165
matrix :
174
- arch : [ppc64le, s390x, arm64 ]
166
+ arch : [ppc64le, s390x]
175
167
176
168
env :
177
169
PLATFORM : linux/${{ matrix.arch }}
You can’t perform that action at this time.
0 commit comments