update to 19

This commit is contained in:
blueloveTH 2026-07-28 18:55:16 +08:00
parent 799829a8aa
commit fed2bcea78
2 changed files with 3 additions and 3 deletions

View File

@ -56,11 +56,11 @@ jobs:
- name: Setup Clang
uses: egor-tensin/setup-clang@v1
with:
version: 17
version: 19
platform: x64
- name: Run Sanitizers
run: |
sudo apt-get install -y libclang-rt-17-dev
sudo apt-get install -y libclang-rt-19-dev
bash build_g.sh
bash run_tests.sh
rm -rf ./main

View File

@ -17,7 +17,7 @@ rm -rf .coverage
mkdir .coverage
UNITS=$(find ./ -name "*.gcno")
llvm-cov-17 gcov ${UNITS} -r -s include/ -r -s src/ >> .coverage/coverage.txt
llvm-cov-19 gcov ${UNITS} -r -s include/ -r -s src/ >> .coverage/coverage.txt
mv *.gcov .coverage
rm *.gcda