DynuIPRefresher/.gitlab-ci.yml

24 lines
612 B
YAML
Raw Normal View History

2020-04-30 13:15:01 +00:00
stages:
2020-05-08 15:17:20 +00:00
- cmake
2020-04-30 13:15:01 +00:00
- build
- post
2020-10-16 16:25:47 +00:00
image: conanio/gcc9:latest
2020-10-16 15:53:18 +00:00
cache:
paths:
- /home/conan/.conan/
# Unix Build
2020-05-08 15:17:20 +00:00
cmake:
stage: cmake
script:
2020-10-16 16:37:37 +00:00
- mkdir ../build -p
- cd ../build
2020-10-16 15:18:08 +00:00
- conan remote add bintray https://api.bintray.com/conan/lheili/LibConfig
- conan user lukas-heiligenbrunner -r bintray -p $CONAN_KEY
2020-10-13 22:36:17 +00:00
- conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
2020-10-16 16:15:11 +00:00
- rm * -f
2020-10-16 16:50:06 +00:00
- CONAN_SYSREQUIRES_MODE=disabled conan install ../dynuiprefresher --build=missing
- cd ../dynuiprefresher
2020-10-16 16:37:37 +00:00
- cmake -S . -B ../build -D WinBuild=OFF -D GUI=OFF