removed CI

This commit is contained in:
Phuntsok Drak-pa 2019-03-19 13:49:13 +01:00
parent b9475855cc
commit 41310135f4
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
image: conanio/clang7
variables:
CC: /usr/bin/clang
CXX: /usr/bin/clang++
build:
stage: build
before_script:
- apt update && apt -y install cmake ninja
- pip install conan --upgrade
- conan profile new default --detect
- conan profile update settings.compiler=clang default
- conan profile update settings.compiler.version=7.0 default
- conan profile update settings.compiler.libcxx=libstdc++11 default
- conan profile update env.CC=/bin/clang default
- conan profile update env.CXX=/bin/clang++ default
script:
- mkdir build && cd build
- conan install .. --build missing
- export CC=clang
- export CXX=clang++
- cmake .. -G Ninja
- cmake --build .
artifacts:
paths:
- mybinary
cache:
paths:
- "*.o"
- "~/.conan/"
# test:
# stage: test
# script:
# - ./runmytests.sh