removed redundant tests

clang v3.8 tests are either flacky or redundant,
prefer using clang-latest.
This commit is contained in:
Yann Collet
2021-01-06 15:40:20 -08:00
parent f011f639de
commit 9866148e22
4 changed files with 13 additions and 30 deletions
+3 -6
View File
@@ -34,16 +34,13 @@ jobs:
make -C tests test-zbuff
tsan:
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: thread sanitizer
run: |
sudo apt-add-repository "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.8 main"
sudo apt-get update
sudo apt-get install clang-3.8
CC=clang-3.8 make tsan-test-zstream
CC=clang-3.8 make tsan-fuzztest
CC=clang make tsan-test-zstream
CC=clang make tsan-fuzztest
zlib-wrapper:
runs-on: ubuntu-16.04