diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 713bab3..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -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