DynuIPRefresher/.gitlab-ci.yml

28 lines
602 B
YAML
Raw Normal View History

2020-04-30 13:15:01 +00:00
stages:
2020-10-16 17:03:05 +00:00
- conan
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/
2020-10-16 17:03:05 +00:00
conan:
stage: conan
2020-05-08 15:17:20 +00:00
script:
2020-10-16 17:11:17 +00:00
- mkdir build
- 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 17:03:05 +00:00
- CONAN_SYSREQUIRES_MODE=enabled conan install .. --build=missing
# Unix Build
cmake:
stage: cmake
script:
2020-10-16 17:11:17 +00:00
- cd build
2020-10-16 16:37:37 +00:00
- cmake -S . -B ../build -D WinBuild=OFF -D GUI=OFF