PkmnLib/.drone.yml

65 lines
2.7 KiB
YAML

---
kind: pipeline
name: default
type: docker
steps:
- name: submodules
image: alpine/git
commands:
- git submodule update --init --recursive
- name: test-debug-linux
image: deukhoofd/linux64builder
environment:
CC: clang
CXX: clang++
commands:
- 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
- name: test-release-linux
image: deukhoofd/linux64builder
environment:
CC: clang
CXX: clang++
commands:
- 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
- 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
- name: style-check
image: deukhoofd/linux64builder
failure: ignore
commands:
- run-clang-format.py -r src/ CInterface/ tests/ --color=always
- name: test-release-windows
image: deukhoofd/windowsbuilder
environment:
CHOST: x86_64-w64-mingw32
AR: x86_64-w64-mingw32-ar
AS: x86_64-w64-mingw32-as
RANLIB: x86_64-w64-mingw32-ranlib
CC: x86_64-w64-mingw32-gcc
CXX: x86_64-w64-mingw32-g++
STRIP: x86_64-w64-mingw32-strip
RC: x86_64-w64-mingw32-windres
commands:
- cmake -GNinja -DCMAKE_BUILD_TYPE=Release . -B build-release-windows -D CMAKE_C_COMPILER=/usr/bin/x86_64-w64-mingw32-gcc -D CMAKE_CXX_COMPILER=x86_64-w64-mingw32-g++ -DWINDOWS=ON -DSTATICC=ON -DPKMNLIB_TESTS=ON -DSHARED=ON
- cmake --build build-release-windows --target all -- -j 4
- find . -name '*.dll*' -exec cp {} . \;
- export WINEARCH=win64
- wine64 build-release-windows/pkmnLibTests.exe -s --duration=true --force-colors=true
---
kind: signature
hmac: c069ef62b83d52f15ad57484fdf25eb359281cc9d4c6c3f8b8e38b2cfb805c44
...