Use the default clang on ubuntu-latest.

This commit is contained in:
Tom Finegan 2022-10-28 15:17:00 -07:00
parent 0acdf70b9c
commit 55981d8635

View File

@ -123,25 +123,25 @@ jobs:
cmake_build_command: cmake --build . -- -j2 cmake_build_command: cmake --build . -- -j2
draco_test_command: ./draco_tests draco_test_command: ./draco_tests
- test_name: ubuntu-make-clang14-release-static - test_name: ubuntu-make-clang-release-static
os: ubuntu-latest os: ubuntu-latest
cmake_configure_command: |- cmake_configure_command: |-
cmake .. -G "Unix Makefiles" \ cmake .. -G "Unix Makefiles" \
-DBUILD_SHARED_LIBS=OFF \ -DBUILD_SHARED_LIBS=OFF \
-DCMAKE_BUILD_TYPE=Release \ -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=clang-14 \ -DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++-14 \ -DCMAKE_CXX_COMPILER=clang++ \
-DDRACO_TESTS=ON -DDRACO_TESTS=ON
cmake_build_command: cmake --build . -- -j2 cmake_build_command: cmake --build . -- -j2
draco_test_command: ./draco_tests draco_test_command: ./draco_tests
- test_name: ubuntu-make-clang14-release-static-with-transcoder - test_name: ubuntu-make-clang-release-static-with-transcoder
os: ubuntu-latest os: ubuntu-latest
cmake_configure_command: |- cmake_configure_command: |-
cmake .. -G "Unix Makefiles" \ cmake .. -G "Unix Makefiles" \
-DBUILD_SHARED_LIBS=OFF \ -DBUILD_SHARED_LIBS=OFF \
-DCMAKE_BUILD_TYPE=Release \ -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=clang-14 \ -DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++-14 \ -DCMAKE_CXX_COMPILER=clang++ \
-DDRACO_TESTS=ON \ -DDRACO_TESTS=ON \
-DDRACO_TRANSCODER_SUPPORTED=ON -DDRACO_TRANSCODER_SUPPORTED=ON
cmake_build_command: cmake --build . -- -j2 cmake_build_command: cmake --build . -- -j2