Skip to content

Commit eb4c0fc

Browse files
authored
Fix ci (#25)
Signed-off-by: Bogdan Vaneev <[email protected]>
1 parent b28501f commit eb4c0fc

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ matrix:
2424
packages:
2525
- gcc-5
2626
- g++-5
27+
- git
28+
- python3
29+
- python3-pip
30+
- python3-setuptools
2731
env:
2832
- _CC=gcc-5
2933
- _CXX=g++-5
@@ -37,6 +41,10 @@ matrix:
3741
- llvm-toolchain-trusty-4.0
3842
packages:
3943
- clang-4.0
44+
- git
45+
- python3
46+
- python3-pip
47+
- python3-setuptools
4048
env:
4149
- _CC=clang-4.0
4250
- _CXX=clang++-4.0
@@ -53,6 +61,16 @@ matrix:
5361
- _CC=clang
5462
- _CXX=clang++
5563

64+
install:
65+
- |
66+
# install python pip3 deps
67+
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
68+
pyenv global 3.6
69+
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
70+
pip3 install --user pyyaml
71+
fi
72+
pip3 install --user requests gitpython cmake
73+
5674
script:
5775
- export CC=$_CC
5876
- export CXX=$_CXX

0 commit comments

Comments
 (0)