Skip to content

Commit

Permalink
Remove small runner workarounds (#411)
Browse files Browse the repository at this point in the history
See if the larger default runners allow us to remove some of these small
runner hacks
  • Loading branch information
emlowe committed Jan 23, 2024
1 parent 57fbead commit f35fe50
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/build-test-cplusplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,10 @@ jobs:

- name: cmake, RunTests with address- and undefined sanitizer on Ubuntu
run: |
sudo fallocate -l 16G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
swapon -s
mkdir build-asan
cd build-asan
cmake -DCMAKE_BUILD_TYPE=ASAN ../
cmake --build . -- -j 6
swapon -s
./RunTests
tsan:
Expand All @@ -67,7 +61,7 @@ jobs:
cd build-tsan
cmake -DCMAKE_BUILD_TYPE=TSAN ../
cmake --build . -- -j 6
TSAN_OPTIONS="memory_limit_mb=6000" ./RunTests
./RunTests
mac:
name: MacOS
Expand Down

0 comments on commit f35fe50

Please sign in to comment.