DynuIPRefresher/.gitlab-ci.yml

31 lines
1023 B
YAML

include: '/Docker/Linux_Conan/.gitlab-ci.yml'
image: conanio/gcc9:latest
stages:
- docker
- build
- packageing
cache:
paths:
- .conan/
conan:
stage: build
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
- conan profile update settings.compiler.libcxx=libstdc++11 default # Sets libcxx to C++11 ABI
- conan remote add bintray https://api.bintray.com/conan/lheili/LibConfig --force
- conan user lukas-heiligenbrunner -r bintray -p $CONAN_KEY
- conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan --force
- mkdir -p build # create build folder
- CONAN_SYSREQUIRES_MODE=disabled conan install . --build=missing -g cmake -if build
- cmake -S . -B build -D WinBuild=OFF -D GUI=OFF #cmake project
- cd build
- make #build
artifacts:
paths:
- build/bin/
expire_in: 1 days