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 2c96df0 commit 2bbb273Copy full SHA for 2bbb273
.github/workflows/analysis.yml
@@ -46,12 +46,14 @@ jobs:
46
PASSED_SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
47
strategy:
48
fail-fast: false
49
+ matrix:
50
+ compiler: os: [ {gcc, g++}, {clang, clang} ]
51
runs-on: ubuntu-latest
52
container:
53
image: aswf/ci-osl:2024-clang17.2
54
env:
- CXX: g++
- CC: gcc
55
+ CC: ${{ matrix.compiler[0] }}
56
+ CXX: ${{ matrix.compiler[1] }}
57
steps:
58
- name: Dependencies
59
shell: bash
0 commit comments