Skip to content

Commit

Permalink
added clang version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xanthospap committed Oct 2, 2024
1 parent 8860206 commit 2300f8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cpp-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: ctest --test-dir build

- name: "prepare build (production/standard), clang"
run: cmake -S . -B build -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang++
run: cmake -S . -B build -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang++-17
- name: "build"
run: cmake --build build --target all --config Release -- -j4 --trace
- name: "Test"
Expand All @@ -34,7 +34,7 @@ jobs:
run: cmake --build build --target all --config Debug -- -j4 --trace

- name: "prepare build (debug), clang"
run: cmake -S . -B build -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=clang++
run: cmake -S . -B build -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=clang++-17
- name: "build"
run: cmake --build build --target all --config Debug -- -j4 --trace

Expand Down

0 comments on commit 2300f8e

Please sign in to comment.