File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,12 @@ before_install:
9
9
- wget -P .travis-tmp/astyle-2.03/ http://heanet.dl.sourceforge.net/project/astyle/astyle/astyle%202.03/astyle_2.03_linux.tar.gz
10
10
- tar xvzf .travis-tmp/astyle-2.03/astyle_2.03_linux.tar.gz -C .travis-tmp/astyle-2.03/
11
11
# build astyle-2.03
12
- - pushd .travis-tmp/astyle-2.03/astyle/build/gcc && make && export PATH=$PATH:`pwd`/bin && popd
12
+ - pushd .travis-tmp/astyle-2.03/astyle/build/gcc && make && export PATH=`pwd`/bin:$PATH && popd
13
+ # cmake-3.2.2
14
+ - mkdir -p .travis-tmp/cmake-3.2.2
15
+ - wget -P .travis-tmp/cmake-3.2.2/ http://www.cmake.org/files/v3.2/cmake-3.2.2-Linux-x86_64.sh
16
+ - bash .travis-tmp/cmake-3.2.2/cmake-3.2.2-Linux-x86_64.sh --exclude-subdir --prefix=.travis-tmp/cmake-3.2.2 --skip-license
17
+ - export PATH=`pwd`/.travis-tmp/cmake-3.2.2/bin:$PATH
13
18
script :
14
- - cmake -Dtest=ON && make && ctest
19
+ - cmake -Dtest=ON && make && ctest -V
15
20
- ./script/travis_format_checcker.sh
You can’t perform that action at this time.
0 commit comments