CreatureLib/.drone.yml

72 lines
2.8 KiB
YAML

---
kind: pipeline
name: default
volumes:
- name: docs
host:
path: /home/docs/CreatureLib
type: docker
steps:
- name: test-debug-linux
image: deukhoofd/linux64builder
environment:
CC: /usr/bin/clang
CXX: /usr/bin/clang++
commands:
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-debug -DSTATICC=ON -DCREATURELIB_TESTS=ON
- cmake --build build-debug --target all -- -j 4
- build-debug/CreatureLibTests -s --duration=true --force-colors=true
- name: test-release-linux
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 -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:
# 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:
- 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 -DCREATURELIB_TESTS=ON
- cmake --build build-release-windows --target all -- -j 4
- export WINEARCH=win64
- wine build-release-windows/CreatureLibTests.exe -s --duration=true --force-colors=true
- name: style-check
image: deukhoofd/linux64builder
failure: ignore
commands:
- run-clang-format.py -r src/ CInterface/ tests/ --color=always
- name: documentation-publish
image: deukhoofd/linux64builder
when:
branch:
- master
volumes:
- name: docs
path: /docs
commands:
- rm -rf /docs/*
- wget https://documentation.p-epsilon.com/Arbutils/Arbutils.tag -O Arbutils.tag
- ( cat Doxyfile ; echo "OUTPUT_DIRECTORY=/docs"; echo "GENERATE_TAGFILE=/docs/html/CreatureLib.tag" ) | doxygen -
---
kind: signature
hmac: d01aedbc7c5c02ad47bf94693a3bb23a1d6f28b1e6b5ac8b292e7bd4e67ff79a
...