Set up parallelism for drone build
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2022-04-10 13:02:15 +02:00
parent 88dd285642
commit 0e7b9ae1fd
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 5 additions and 1 deletions

View File

@ -27,6 +27,8 @@ steps:
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-release -DSTATICC=ON -DCREATURELIB_TESTS=ON
- cmake --build build-release --target all -- -j 4
- build-release/CreatureLibTests -s --duration=true --force-colors=true
depends_on:
- test-debug-linux
- name: test-release-linux_valgrind
image: deukhoofd/linux64builder
environment:
@ -36,6 +38,8 @@ steps:
- 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:
@ -62,6 +66,6 @@ steps:
- ( cat Doxyfile ; echo "OUTPUT_DIRECTORY=/docs"; echo "GENERATE_TAGFILE=/docs/html/CreatureLib.tag" ) | doxygen -
---
kind: signature
hmac: 79e27c16b731ffb14c2866d2d5fba7edd586df71a617a41fabc92e53b52059ef
hmac: c080fcb18a42ee3f521409381f6f86b7a1c93894d50e5d9dbe94e9410152ecfd
...