2020-09-25 13:02:46 +00:00
|
|
|
---
|
2020-02-26 11:57:18 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
type: docker
|
|
|
|
steps:
|
|
|
|
- name: test-debug-linux
|
|
|
|
image: deukhoofd/linux64builder
|
|
|
|
environment:
|
|
|
|
CC: /usr/bin/clang
|
|
|
|
CXX: /usr/bin/clang++
|
2020-09-12 14:55:27 +00:00
|
|
|
CMAKE_RANLIB: /usr/bin/llvm-ranlib
|
|
|
|
CMAKE_AR: /usr/bin/llvm-ar
|
2020-02-26 11:57:18 +00:00
|
|
|
commands:
|
2022-02-05 14:46:11 +00:00
|
|
|
- cmake -GNinja -DCMAKE_BUILD_TYPE=Debug . -B build-debug -DSTATICC=ON -DARBUTILS_TESTS=ON
|
2020-02-26 11:57:18 +00:00
|
|
|
- cmake --build build-debug --target all -- -j 4
|
2020-09-21 16:58:30 +00:00
|
|
|
- cd build-debug
|
2020-09-25 09:54:23 +00:00
|
|
|
- ./ArbutilsTests -s --duration=true --force-colors=true
|
2020-02-26 11:57:18 +00:00
|
|
|
- name: test-release-linux
|
|
|
|
image: deukhoofd/linux64builder
|
|
|
|
environment:
|
|
|
|
CC: /usr/bin/clang
|
|
|
|
CXX: /usr/bin/clang++
|
2020-09-12 14:55:27 +00:00
|
|
|
CMAKE_RANLIB: /usr/bin/llvm-ranlib
|
|
|
|
CMAKE_AR: /usr/bin/llvm-ar
|
2020-02-26 11:57:18 +00:00
|
|
|
commands:
|
2022-02-05 14:46:11 +00:00
|
|
|
- cmake -GNinja -DCMAKE_BUILD_TYPE=Release . -B build-release -DSTATICC=ON -DARBUTILS_TESTS=ON
|
2020-02-26 11:57:18 +00:00
|
|
|
- cmake --build build-release --target all -- -j 4
|
2022-03-22 11:36:52 +00:00
|
|
|
- cd build-release
|
2020-09-25 09:54:23 +00:00
|
|
|
- ./ArbutilsTests -s --duration=true --force-colors=true
|
2022-04-10 11:06:38 +00:00
|
|
|
depends_on:
|
|
|
|
- test-debug-linux
|
2022-03-22 11:36:52 +00:00
|
|
|
- name: test-release-linux_valgrind
|
|
|
|
image: deukhoofd/linux64builder
|
|
|
|
environment:
|
|
|
|
CC: /usr/bin/clang
|
|
|
|
CXX: /usr/bin/clang++
|
|
|
|
CMAKE_RANLIB: /usr/bin/llvm-ranlib
|
|
|
|
CMAKE_AR: /usr/bin/llvm-ar
|
|
|
|
commands:
|
|
|
|
- cmake -GNinja -DCMAKE_BUILD_TYPE=Release . -B build-release_valgrind -DSTATICC=ON -DARBUTILS_TESTS=ON -DSANITIZER_TESTS=OFF
|
|
|
|
- cmake --build build-release_valgrind --target all -- -j 4
|
|
|
|
- cd build-release_valgrind
|
2022-02-26 13:55:28 +00:00
|
|
|
- valgrind --tool=memcheck --gen-suppressions=all --leak-check=full --leak-resolution=med --track-origins=yes --vgdb=no --error-exitcode=1 ./ArbutilsTests
|
2022-04-10 11:06:38 +00:00
|
|
|
depends_on:
|
|
|
|
- test-release-linux
|
2020-02-26 11:57:18 +00:00
|
|
|
- name: test-release-windows
|
|
|
|
image: deukhoofd/windowsbuilder
|
|
|
|
commands:
|
2022-02-05 14:46:11 +00:00
|
|
|
- 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 -DARBUTILS_TESTS=ON
|
2020-02-26 11:57:18 +00:00
|
|
|
- cmake --build build-release-windows --target all -- -j 4
|
|
|
|
- export WINEARCH=win64
|
2020-09-25 09:54:23 +00:00
|
|
|
- wine build-release-windows/ArbutilsTests.exe -s --duration=true --force-colors=true --test-case-exclude="Throw exception get stack trace"
|
2020-09-24 18:48:00 +00:00
|
|
|
- name: style-check
|
|
|
|
image: deukhoofd/linux64builder
|
|
|
|
failure: ignore
|
|
|
|
commands:
|
|
|
|
- run-clang-format.py -r src/ tests/ --exclude "*MacroUtils.hpp"
|
|
|
|
- name: documentation-check
|
|
|
|
image: deukhoofd/linux64builder
|
|
|
|
commands:
|
|
|
|
- ( cat Doxyfile ; echo "WARN_AS_ERROR=YES" ) | doxygen -
|
|
|
|
- rm -rf docs
|
2020-09-25 13:13:25 +00:00
|
|
|
- name: documentation-publish
|
|
|
|
image: deukhoofd/linux64builder
|
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
volumes:
|
|
|
|
- name: docs
|
|
|
|
path: /docs
|
|
|
|
commands:
|
|
|
|
- rm -rf docs
|
2020-09-25 16:11:53 +00:00
|
|
|
- ( cat Doxyfile ; echo "OUTPUT_DIRECTORY=/docs"; echo "GENERATE_TAGFILE=/docs/html/Arbutils.tag" ) | doxygen -
|
2020-09-25 13:13:25 +00:00
|
|
|
volumes:
|
|
|
|
- name: docs
|
|
|
|
host:
|
|
|
|
path: /home/docs/Arbutils
|
2020-09-25 13:02:46 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2022-04-10 11:06:38 +00:00
|
|
|
hmac: 8cd9f2cca97c22b86e4eefc0eb28b80fd3efa7f4aa923368d3a648648d38502b
|
2020-09-25 13:02:46 +00:00
|
|
|
|
|
|
|
...
|