浏览代码

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

main
offa 5 年前
父节点
当前提交
8610b6ad52
共有 2 个文件被更改,包括 7 次插入1 次删除
  1. +1
    -1
      conanfile.txt
  2. +6
    -0
      script/ci_build.sh

+ 1
- 1
conanfile.txt 查看文件

@@ -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 查看文件

@@ -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

正在加载...
取消
保存