File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ matrix:
24
24
packages :
25
25
- gcc-5
26
26
- g++-5
27
+ - git
28
+ - python3
29
+ - python3-pip
30
+ - python3-setuptools
27
31
env :
28
32
- _CC=gcc-5
29
33
- _CXX=g++-5
@@ -37,6 +41,10 @@ matrix:
37
41
- llvm-toolchain-trusty-4.0
38
42
packages :
39
43
- clang-4.0
44
+ - git
45
+ - python3
46
+ - python3-pip
47
+ - python3-setuptools
40
48
env :
41
49
- _CC=clang-4.0
42
50
- _CXX=clang++-4.0
@@ -53,6 +61,16 @@ matrix:
53
61
- _CC=clang
54
62
- _CXX=clang++
55
63
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
+
56
74
script :
57
75
- export CC=$_CC
58
76
- export CXX=$_CXX
You can’t perform that action at this time.
0 commit comments