From ffa01d85651883f3258f54531f0438f11d4ed09f Mon Sep 17 00:00:00 2001 From: Jan Dorniak Date: Tue, 2 Jul 2024 20:54:56 +0200 Subject: [PATCH] another fix for actions, shouldn't be in so much of a hurry --- .github/workflows/clang-c++23.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/clang-c++23.yml b/.github/workflows/clang-c++23.yml index 8354a0c89..542f13795 100644 --- a/.github/workflows/clang-c++23.yml +++ b/.github/workflows/clang-c++23.yml @@ -19,8 +19,11 @@ jobs: - name: Build run: | + export CC=clang-18 + export CXX=clang++-18 export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0 cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=23 ./ + clang-18 --version make - name: Run tests @@ -38,8 +41,11 @@ jobs: - name: Build run: | + export CC=clang-18 + export CXX=clang++-18 export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0 cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=ON -DETL_CXX_STANDARD=23 ./ + clang-18 --version make - name: Run tests @@ -57,8 +63,11 @@ jobs: - name: Build run: | + export CC=clang-18 + export CXX=clang++-18 export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0 cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=ON -DETL_CXX_STANDARD=23 ./ + clang-18 --version make - name: Run tests