From 2300f8ee19e526b5dcabd6f43d5c40b4eba33ebb Mon Sep 17 00:00:00 2001 From: "xanthos@durruti" Date: Wed, 2 Oct 2024 14:54:27 +0300 Subject: [PATCH] added clang version in CI --- .github/workflows/cpp-linux-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cpp-linux-build.yml b/.github/workflows/cpp-linux-build.yml index 8dbb0f4..8790d88 100644 --- a/.github/workflows/cpp-linux-build.yml +++ b/.github/workflows/cpp-linux-build.yml @@ -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" @@ -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