Skip to content

Commit 2203527

Browse files
committed
WIP list available compilers
1 parent 2ada915 commit 2203527

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/linux.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,21 @@ on:
77

88
jobs:
99
Linux-GCC:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
cxx: ['7', '13']
13+
cxx: ['g++-14', 'llvm-18']
1414
env:
1515
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON
1616
CMAKE_MATROSKA_OPTIONS: -DBUILD_EXAMPLES=ON
17+
CXX: ${{matrix.cxx}}
1718
steps:
18-
- uses: egor-tensin/setup-gcc@v1
19-
with:
20-
version: ${{matrix.cxx}}
19+
- name: list compilers
20+
run: dpkg --list | grep compiler
21+
22+
# - uses: egor-tensin/setup-gcc@v1
23+
# with:
24+
# version: ${{matrix.cxx}}
2125

2226
- name: Get pushed code
2327
uses: actions/checkout@v4

0 commit comments

Comments
 (0)