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 f6a70cd commit 627e416Copy full SHA for 627e416
.github/workflows/linux.yml
@@ -17,7 +17,7 @@ jobs:
17
runs-on: ubuntu-latest
18
strategy:
19
matrix:
20
- compiler: [clang++-15, g++]
+ compiler: [clang++, g++]
21
type: [Debug, Release]
22
23
steps:
@@ -26,7 +26,7 @@ jobs:
26
submodules: true
27
28
- name: Install dependencies
29
- run: sudo apt update && sudo apt install -y cmake ninja-build gcc g++ clang-15
+ run: sudo apt update && sudo apt install -y cmake ninja-build gcc g++ clang
30
31
- name: Configure
32
run: cmake -GNinja -H. -B../Build -DINCH_UNIT_TESTS=ON -DCMAKE_CXX_COMPILER=/usr/bin/${{ matrix.compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.type }}
0 commit comments