DynuIPRefresher/.gitlab-ci.yml

31 lines
1023 B
YAML
Raw Normal View History

include: '/Docker/Linux_Conan/.gitlab-ci.yml'
2020-10-16 16:25:47 +00:00
image: conanio/gcc9:latest
stages:
- docker
- build
- packageing
2020-10-16 15:53:18 +00:00
cache:
paths:
2020-10-31 15:50:23 +00:00
- .conan/
2020-10-16 15:53:18 +00:00
2020-10-16 17:03:05 +00:00
conan:
stage: build
2020-05-08 15:17:20 +00:00
script:
- export CONAN_USER_HOME=$PWD/.conan #define .conan folder to be inside of project
- conan profile new default --detect --force # Generates default profile detecting GCC and sets old ABI
2020-10-31 16:02:23 +00:00
- conan profile update settings.compiler.libcxx=libstdc++11 default # Sets libcxx to C++11 ABI
2020-10-31 16:13:07 +00:00
- conan remote add bintray https://api.bintray.com/conan/lheili/LibConfig --force
2020-10-16 15:18:08 +00:00
- conan user lukas-heiligenbrunner -r bintray -p $CONAN_KEY
2020-10-31 16:13:07 +00:00
- conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan --force
2020-10-31 16:02:23 +00:00
- mkdir -p build # create build folder
2020-10-31 16:33:39 +00:00
- CONAN_SYSREQUIRES_MODE=disabled conan install . --build=missing -g cmake -if build
- cmake -S . -B build -D WinBuild=OFF -D GUI=OFF #cmake project
2020-10-31 10:57:49 +00:00
- cd build
- make #build
artifacts:
paths:
2020-10-31 15:50:23 +00:00
- build/bin/
2020-10-31 10:57:49 +00:00
expire_in: 1 days