Investigate drone parallelism
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
2cac37d814
commit
c6775d7089
13
.drone.yml
13
.drone.yml
|
@ -17,6 +17,8 @@ steps:
|
|||
- cmake -GNinja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-debug -DSTATICC=ON -DPKMNLIB_TESTS=ON -DSHARED=ON
|
||||
- cmake --build build-debug --target all -- -j 4
|
||||
- build-debug/pkmnLibTests -s --duration=true --force-colors=true
|
||||
depends_on:
|
||||
- submodules
|
||||
- name: test-release-linux
|
||||
image: deukhoofd/linux64builder
|
||||
environment:
|
||||
|
@ -26,15 +28,16 @@ steps:
|
|||
- cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-release -DSTATICC=ON -DPKMNLIB_TESTS=ON -DSHARED=ON
|
||||
- cmake --build build-release --target all -- -j 4
|
||||
- build-release/pkmnLibTests -s --duration=true --force-colors=true
|
||||
depends_on:
|
||||
- test-debug-linux
|
||||
- name: valgrind-release-linux
|
||||
image: deukhoofd/linux64builder
|
||||
volumes:
|
||||
- name: conan-data
|
||||
path: /root/.conan/data
|
||||
commands:
|
||||
- cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-release_valgrind -DSTATICC=ON -DPKMNLIB_TESTS=ON -DSHARED=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 --suppressions=angelscript.supp build-release_valgrind/pkmnLibTests
|
||||
depends_on:
|
||||
- test-release-linux
|
||||
- name: style-check
|
||||
image: deukhoofd/linux64builder
|
||||
failure: ignore
|
||||
|
@ -57,8 +60,10 @@ steps:
|
|||
- find . -name '*.dll*' -exec cp {} . \;
|
||||
- export WINEARCH=win64
|
||||
- wine64 build-release-windows/pkmnLibTests.exe -s --duration=true --force-colors=true
|
||||
depends_on:
|
||||
- submodules
|
||||
---
|
||||
kind: signature
|
||||
hmac: c069ef62b83d52f15ad57484fdf25eb359281cc9d4c6c3f8b8e38b2cfb805c44
|
||||
hmac: 1c542acce5030fd83115eeb43c3bf3f487e8060ee1b68ecd86f11a993afb8add
|
||||
|
||||
...
|
||||
|
|
Loading…
Reference in New Issue