2019-12-31 11:10:30 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
2019-12-31 11:50:05 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: conan-data
|
|
|
|
host:
|
|
|
|
path: /root/.conan/data
|
|
|
|
|
2019-12-31 11:10:30 +00:00
|
|
|
type: docker
|
|
|
|
steps:
|
|
|
|
- name: test-debug-linux
|
|
|
|
image: deukhoofd/linux64builder
|
2019-12-31 11:50:05 +00:00
|
|
|
volumes:
|
|
|
|
- name: conan-data
|
|
|
|
path: /root/.conan/data
|
2019-12-31 11:26:12 +00:00
|
|
|
environment:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
2019-12-31 11:10:30 +00:00
|
|
|
commands:
|
2019-12-31 11:27:59 +00:00
|
|
|
- conan remote add epsilon-public https://packages.p-epsilon.com/artifactory/api/conan/epsilon-public
|
2019-12-31 11:29:21 +00:00
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug . -B build-debug
|
2019-12-31 11:10:30 +00:00
|
|
|
- cmake --build build-debug --target all -- -j 4
|
2019-12-31 11:26:12 +00:00
|
|
|
- build-debug/bin/pkmnLibtests -s --durations yes --use-colour yes
|
2019-12-31 11:10:30 +00:00
|
|
|
- name: test-release-linux
|
|
|
|
image: deukhoofd/linux64builder
|
2019-12-31 11:50:05 +00:00
|
|
|
volumes:
|
|
|
|
- name: conan-data
|
|
|
|
path: /root/.conan/data
|
2019-12-31 11:26:12 +00:00
|
|
|
environment:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
2019-12-31 11:10:30 +00:00
|
|
|
commands:
|
2019-12-31 11:27:59 +00:00
|
|
|
- conan remote add epsilon-public https://packages.p-epsilon.com/artifactory/api/conan/epsilon-public
|
2019-12-31 11:29:21 +00:00
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Release . -B build-release
|
2019-12-31 11:10:30 +00:00
|
|
|
- cmake --build build-release --target all -- -j 4
|
2019-12-31 11:26:12 +00:00
|
|
|
- build-release/bin/pkmnLibtests -s --durations yes --use-colour yes
|
2019-12-31 11:10:30 +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
|
|
|
|
- name: test-release-windows
|
|
|
|
image: deukhoofd/windowsbuilder
|
|
|
|
environment:
|
|
|
|
CONAN_CMAKE_FIND_ROOT_PATH: /usr/x86_64-w64-mingw32
|
|
|
|
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:
|
|
|
|
- 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
|
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Release . -B build-release-windows -D CMAKE_C_COMPILER=/usr/bin/x86_64-w64-mingw32-gcc -D CMAKE_CXX_COMPILER=/usr/bin/x86_64-w64-mingw32-g++ -DWINDOWS=ON
|
|
|
|
- conan install . --install=folder=build-release-windows --build missing -s os_build=Linux -s arch_build=x86_64 -s os=Windows -s arch=x86_64 -s compiler=gcc -s compiler.version=7.3 -s compiler.libcxx=libstdc++11 -s build_type=Release
|
|
|
|
- cmake --build build-release-windows --target all -- -j 4
|
|
|
|
- export WINEARCH=win64
|
|
|
|
- wine build-release-windows/CreatureLibTests.exe -s
|