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 @@ -43,14 +43,19 @@ matrix:
43
43
- env : BUILD_TYPE=Debug CC_COMPILER=gcc-${GCC_VERSION} CXX_COMPILER=g++-${GCC_VERSION}
44
44
addons : *gcc
45
45
46
+ - env :
47
+ install :
48
+ before_script :
49
+ script :
50
+ - travis_retry wget --quiet -O - https://raw.githubusercontent.com/cpplint/cpplint/master/cpplint.py | python - --recursive src examples
51
+
46
52
install :
47
53
- mkdir -p deps && cd deps
48
54
- travis_retry wget --no-check-certificate --quiet -O - https://cmake.org/files/v3.12/cmake-3.12.3-Linux-x86_64.tar.gz | tar --strip-components=1 -xz
49
55
- export PATH=${TRAVIS_BUILD_DIR}/deps/bin:${PATH}
50
56
- cd -
51
57
52
58
before_script :
53
- - travis_retry wget --quiet -O - https://raw.githubusercontent.com/cpplint/cpplint/master/cpplint.py | python - --recursive src examples
54
59
- mkdir -p build && cd build
55
60
- rm -rf *
56
61
- cmake .. -GNinja -DLIB_PROTO_MUTATOR_WITH_ASAN=ON -DLIB_PROTO_MUTATOR_DOWNLOAD_PROTOBUF=ON -DCMAKE_C_COMPILER=${CC_COMPILER} -DCMAKE_CXX_COMPILER=${CXX_COMPILER} -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DCMAKE_INSTALL_PREFIX=/usr
@@ -59,4 +64,4 @@ script:
59
64
- export ASAN_OPTIONS=detect_leaks=0
60
65
- ninja
61
66
- ninja check
62
- - DESTDIR="/tmp/testing/" ninja install
67
+ - DESTDIR="/tmp/testing/" ninja install
You can’t perform that action at this time.
0 commit comments