2020-09-25 16:25:19 +00:00
|
|
|
---
|
2019-10-06 11:55:04 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
2020-04-10 21:12:34 +00:00
|
|
|
volumes:
|
|
|
|
- name: conan-data
|
2020-09-25 16:24:28 +00:00
|
|
|
temp: { }
|
|
|
|
- name: docs
|
|
|
|
host:
|
|
|
|
path: /home/docs/CreatureLib
|
2020-04-10 21:12:34 +00:00
|
|
|
|
2019-12-05 12:52:46 +00:00
|
|
|
type: docker
|
2019-10-06 11:55:04 +00:00
|
|
|
steps:
|
|
|
|
- name: test-debug-linux
|
|
|
|
image: deukhoofd/linux64builder
|
2020-04-10 21:12:34 +00:00
|
|
|
volumes:
|
|
|
|
- name: conan-data
|
|
|
|
path: /root/.conan/data
|
2020-02-12 18:57:15 +00:00
|
|
|
environment:
|
|
|
|
CC: /usr/bin/clang
|
|
|
|
CXX: /usr/bin/clang++
|
2019-10-06 11:55:04 +00:00
|
|
|
commands:
|
2020-02-27 11:55:32 +00:00
|
|
|
- conan remote add epsilon-public https://packages.p-epsilon.com/
|
2020-07-17 11:12:58 +00:00
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-debug -DSTATICC=ON -DTESTS=ON
|
2019-10-06 11:55:04 +00:00
|
|
|
- cmake --build build-debug --target all -- -j 4
|
2020-09-30 16:53:28 +00:00
|
|
|
- build-debug/CreatureLibTests -s --duration=true --force-colors=true
|
2019-10-06 11:55:04 +00:00
|
|
|
- name: test-release-linux
|
|
|
|
image: deukhoofd/linux64builder
|
2020-04-10 21:12:34 +00:00
|
|
|
volumes:
|
|
|
|
- name: conan-data
|
|
|
|
path: /root/.conan/data
|
2020-02-12 18:57:15 +00:00
|
|
|
environment:
|
|
|
|
CC: /usr/bin/clang
|
|
|
|
CXX: /usr/bin/clang++
|
2019-10-06 11:55:04 +00:00
|
|
|
commands:
|
2020-02-27 11:55:32 +00:00
|
|
|
- conan remote add epsilon-public https://packages.p-epsilon.com/
|
2020-07-17 11:12:58 +00:00
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-release -DSTATICC=ON -DTESTS=ON
|
2019-10-06 11:55:04 +00:00
|
|
|
- cmake --build build-release --target all -- -j 4
|
2020-09-30 16:53:28 +00:00
|
|
|
- build-release/CreatureLibTests -s --duration=true --force-colors=true
|
2020-08-16 15:53:04 +00:00
|
|
|
- valgrind --tool=memcheck --gen-suppressions=all --leak-check=full --leak-resolution=med --track-origins=yes --vgdb=no --error-exitcode=1 build-release/CreatureLibTests ~\[Exception\]
|
2019-10-06 11:55:04 +00:00
|
|
|
- name: test-release-windows
|
|
|
|
image: deukhoofd/windowsbuilder
|
2020-04-10 21:12:34 +00:00
|
|
|
volumes:
|
|
|
|
- name: conan-data
|
|
|
|
path: /root/.conan/data
|
2020-12-31 13:31:27 +00:00
|
|
|
environment:
|
2020-12-31 13:38:12 +00:00
|
|
|
CONAN_ENV_COMPILER_VERSION: 9.3
|
2019-10-06 11:55:04 +00:00
|
|
|
commands:
|
2020-02-27 11:55:32 +00:00
|
|
|
- conan remote add epsilon-public https://packages.p-epsilon.com/
|
2019-10-06 11:55:04 +00:00
|
|
|
- update-alternatives --set i686-w64-mingw32-gcc /usr/bin/i686-w64-mingw32-gcc-posix
|
|
|
|
- update-alternatives --set i686-w64-mingw32-g++ /usr/bin/i686-w64-mingw32-g++-posix
|
|
|
|
- update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix
|
|
|
|
- update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix
|
2020-07-17 11:12:58 +00:00
|
|
|
- cmake -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 -DTESTS=ON
|
2019-10-06 11:55:04 +00:00
|
|
|
- cmake --build build-release-windows --target all -- -j 4
|
|
|
|
- export WINEARCH=win64
|
2020-09-30 16:53:28 +00:00
|
|
|
- wine build-release-windows/CreatureLibTests.exe -s --duration=true --force-colors=true
|
2020-09-25 16:24:28 +00:00
|
|
|
- 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:
|
2020-09-25 16:31:31 +00:00
|
|
|
- rm -rf /docs/*
|
2020-09-25 16:39:36 +00:00
|
|
|
- wget https://documentation.p-epsilon.com/Arbutils/Arbutils.tag -O Arbutils.tag
|
2020-09-25 16:24:28 +00:00
|
|
|
- ( cat Doxyfile ; echo "OUTPUT_DIRECTORY=/docs"; echo "GENERATE_TAGFILE=/docs/html/CreatureLib.tag" ) | doxygen -
|
2020-09-25 16:25:19 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2021-04-12 17:26:20 +00:00
|
|
|
hmac: b2f1540b00f641eef3a388ecde2217fca4b036beefaeeff47caaee834092f134
|
2020-09-25 16:25:19 +00:00
|
|
|
|
|
|
|
...
|