We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ebe7d2 commit 4b8a647Copy full SHA for 4b8a647
.github/workflows/ci.yml
@@ -283,11 +283,22 @@ jobs:
283
ELLSWIFT: 'yes'
284
CTIMETESTS: 'no'
285
286
+ strategy:
287
+ fail-fast: false
288
+ matrix:
289
+ configuration:
290
+ - env_vars: { } # gcc
291
+ - env_vars: # clang
292
+ CC: 'clang --target=aarch64-linux-gnu'
293
+ - env_vars: # clang-snapshot
294
+ CC: 'clang-snapshot --target=aarch64-linux-gnu'
295
+
296
steps:
297
- name: Checkout
298
uses: actions/checkout@v3
299
300
- name: CI script
301
+ env: ${{ matrix.configuration.env_vars }}
302
uses: ./.github/actions/run-in-docker-action
303
with:
304
dockerfile: ./ci/linux-debian.Dockerfile
0 commit comments