Skip to content

Commit

Permalink
Fix ci (#25)
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Vaneev <[email protected]>
  • Loading branch information
Warchant authored Apr 11, 2019
1 parent b28501f commit eb4c0fc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ matrix:
packages:
- gcc-5
- g++-5
- git
- python3
- python3-pip
- python3-setuptools
env:
- _CC=gcc-5
- _CXX=g++-5
Expand All @@ -37,6 +41,10 @@ matrix:
- llvm-toolchain-trusty-4.0
packages:
- clang-4.0
- git
- python3
- python3-pip
- python3-setuptools
env:
- _CC=clang-4.0
- _CXX=clang++-4.0
Expand All @@ -53,6 +61,16 @@ matrix:
- _CC=clang
- _CXX=clang++

install:
- |
# install python pip3 deps
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
pyenv global 3.6
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
pip3 install --user pyyaml
fi
pip3 install --user requests gitpython cmake
script:
- export CC=$_CC
- export CXX=$_CXX
Expand Down

0 comments on commit eb4c0fc

Please sign in to comment.