diff --git a/.github/workflows/cmakeClangLinux.yml b/.github/workflows/cmakeClangLinux.yml index 40b541f..cc3ddfb 100644 --- a/.github/workflows/cmakeClangLinux.yml +++ b/.github/workflows/cmakeClangLinux.yml @@ -25,12 +25,12 @@ jobs: - name: Install Linux dependencies run: | sudo apt-get update --option="APT::Acquire::Retries=3" - sudo apt-get install --option="APT::Acquire::Retries=3" libomp-14-dev + sudo apt-get install --option="APT::Acquire::Retries=3" clang-16 libomp-14-dev - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type - run: CC=clang CXX=clang++ cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + run: CC=clang-16 CXX=clang++16 cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: Build # Build your program with the given configuration