@@ -132,6 +132,8 @@ jobs:
132
132
strategy :
133
133
fail-fast : false
134
134
matrix :
135
+ configuration :
136
+ - env_vars : {}
135
137
cc :
136
138
- ' i686-linux-gnu-gcc'
137
139
- ' clang --target=i686-pc-linux-gnu -isystem /usr/i686-linux-gnu/include'
@@ -150,6 +152,7 @@ jobs:
150
152
- *checkout
151
153
152
154
- name : CI script
155
+ env : ${{ matrix.configuration.env_vars }}
153
156
uses : ./.github/actions/run-in-docker-action
154
157
with :
155
158
dockerfile : ./ci/linux-debian.Dockerfile
@@ -162,6 +165,11 @@ jobs:
162
165
runs-on : ubuntu-latest
163
166
needs : docker_cache
164
167
168
+ strategy :
169
+ matrix :
170
+ configuration :
171
+ - env_vars : {}
172
+
165
173
env :
166
174
WRAPPER_CMD : ' qemu-s390x'
167
175
SECP256K1_TEST_ITERS : 16
@@ -179,6 +187,7 @@ jobs:
179
187
- *checkout
180
188
181
189
- name : CI script
190
+ env : ${{ matrix.configuration.env_vars }}
182
191
uses : ./.github/actions/run-in-docker-action
183
192
with :
184
193
dockerfile : ./ci/linux-debian.Dockerfile
@@ -265,6 +274,11 @@ jobs:
265
274
runs-on : ubuntu-latest
266
275
needs : docker_cache
267
276
277
+ strategy :
278
+ matrix :
279
+ configuration :
280
+ - env_vars : {}
281
+
268
282
env :
269
283
WRAPPER_CMD : ' qemu-ppc64le'
270
284
SECP256K1_TEST_ITERS : 16
@@ -282,6 +296,7 @@ jobs:
282
296
- *checkout
283
297
284
298
- name : CI script
299
+ env : ${{ matrix.configuration.env_vars }}
285
300
uses : ./.github/actions/run-in-docker-action
286
301
with :
287
302
dockerfile : ./ci/linux-debian.Dockerfile
@@ -649,6 +664,11 @@ jobs:
649
664
runs-on : ubuntu-latest
650
665
needs : docker_cache
651
666
667
+ strategy :
668
+ matrix :
669
+ configuration :
670
+ - env_vars : {}
671
+
652
672
env :
653
673
CC : ' g++'
654
674
CFLAGS : ' -fpermissive -g'
@@ -665,6 +685,7 @@ jobs:
665
685
- *checkout
666
686
667
687
- name : CI script
688
+ env : ${{ matrix.configuration.env_vars }}
668
689
uses : ./.github/actions/run-in-docker-action
669
690
with :
670
691
dockerfile : ./ci/linux-debian.Dockerfile
0 commit comments