Browse Source

Install python, pip and conan for CI (#156).

main
offa 5 years ago
parent
commit
8610b6ad52
2 changed files with 7 additions and 1 deletions
  1. +1
    -1
      conanfile.txt
  2. +6
    -0
      script/ci_build.sh

+ 1
- 1
conanfile.txt View File

@@ -1,6 +1,6 @@
[requires]
Catch2/2.8.0@catchorg/stable
trompeloeil/v34@rollbear/stable
trompeloeil/v34@rollbear/stable

[generators]
cmake_find_package

+ 6
- 0
script/ci_build.sh View File

@@ -2,12 +2,18 @@

set -ex

# Conan
apt-get install -y python3-pip
pip3 install conan


if [[ "${CXX}" == clang* ]]
then
export CXXFLAGS="-stdlib=libc++"
fi

mkdir build && cd build
conan install --build missing ..

cmake ..
make

Loading…
Cancel
Save