Przeglądaj źródła

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

main
offa 5 lat temu
rodzic
commit
8610b6ad52
2 zmienionych plików z 7 dodań i 1 usunięć
  1. +1
    -1
      conanfile.txt
  2. +6
    -0
      script/ci_build.sh

+ 1
- 1
conanfile.txt Wyświetl plik

@@ -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 Wyświetl plik

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

Ładowanie…
Anuluj
Zapisz