Skip to content

Commit

Permalink
Switch TSAN and UBSAN testing to Clang.
Browse files Browse the repository at this point in the history
GCC is currently broken with incorrect warnings.
  • Loading branch information
rmacnak committed Feb 1, 2025
1 parent 872a13b commit 32a73bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ jobs:
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install g++ scons
sudo apt-get install clang scons
- name: Build
run: ./build arch=x64 sanitize=thread
run: ./build arch=x64 sanitize=thread cxx_host=clang++
- name: Test
run: ./out/ReleaseTSanX64/primordialsoup out/snapshots/TestRunner.vfuel
env:
Expand All @@ -75,9 +75,9 @@ jobs:
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install g++ scons
sudo apt-get install clang scons
- name: Build
run: ./build arch=x64 sanitize=undefined
run: ./build arch=x64 sanitize=undefined cxx_host=clang++
- name: Test
run: ./out/ReleaseUBSanX64/primordialsoup out/snapshots/TestRunner.vfuel
env:
Expand Down

0 comments on commit 32a73bb

Please sign in to comment.