Skip to content

Commit 2bbb273

Browse files
committed
analysis
Signed-off-by: Anton Dukhovnikov <[email protected]>
1 parent 2c96df0 commit 2bbb273

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/analysis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,14 @@ jobs:
4646
PASSED_SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4747
strategy:
4848
fail-fast: false
49+
matrix:
50+
compiler: os: [ {gcc, g++}, {clang, clang} ]
4951
runs-on: ubuntu-latest
5052
container:
5153
image: aswf/ci-osl:2024-clang17.2
5254
env:
53-
CXX: g++
54-
CC: gcc
55+
CC: ${{ matrix.compiler[0] }}
56+
CXX: ${{ matrix.compiler[1] }}
5557
steps:
5658
- name: Dependencies
5759
shell: bash

0 commit comments

Comments
 (0)