Removes Valgrind step for now, as it does not support clang 14
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2022-05-16 19:10:04 +02:00
parent e6f38cfb26
commit efb3bf19ec
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 12 additions and 12 deletions

View File

@ -29,17 +29,17 @@ steps:
- build-release/CreatureLibTests -s --duration=true --force-colors=true
depends_on:
- test-debug-linux
- name: test-release-linux_valgrind
image: deukhoofd/linux64builder
environment:
CC: /usr/bin/clang
CXX: /usr/bin/clang++
commands:
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-release_valgrind -DSTATICC=ON -DCREATURELIB_TESTS=ON -DSANITIZER_TESTS=OFF
- cmake --build build-release_valgrind --target all -- -j 4
- valgrind --tool=memcheck --gen-suppressions=all --leak-check=full --leak-resolution=med --track-origins=yes --vgdb=no --error-exitcode=1 build-release_valgrind/CreatureLibTests ~\[Exception\]
depends_on:
- test-release-linux
# - name: test-release-linux_valgrind
# image: deukhoofd/linux64builder
# environment:
# CC: /usr/bin/clang
# CXX: /usr/bin/clang++
# commands:
# - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-release_valgrind -DSTATICC=ON -DCREATURELIB_TESTS=ON -DSANITIZER_TESTS=OFF
# - cmake --build build-release_valgrind --target all -- -j 4
# - valgrind --tool=memcheck --gen-suppressions=all --leak-check=full --leak-resolution=med --track-origins=yes --vgdb=no --error-exitcode=1 build-release_valgrind/CreatureLibTests ~\[Exception\]
# depends_on:
# - test-release-linux
- name: test-release-windows
image: deukhoofd/windowsbuilder
commands:
@ -66,6 +66,6 @@ steps:
- ( cat Doxyfile ; echo "OUTPUT_DIRECTORY=/docs"; echo "GENERATE_TAGFILE=/docs/html/CreatureLib.tag" ) | doxygen -
---
kind: signature
hmac: c080fcb18a42ee3f521409381f6f86b7a1c93894d50e5d9dbe94e9410152ecfd
hmac: 6da3703041a4581fc470e9b494926c36af266e5936989939a2c8b5390acbe7e0
...