We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 994ef8f commit 30d8ff2Copy full SHA for 30d8ff2
.travis.yml
@@ -21,10 +21,15 @@ matrix:
21
- os: linux
22
dist: trusty
23
compiler: clang
24
+ env: CI_BUILD_PREFIX=scan-build-3.5
25
+ addons:
26
+ apt:
27
+ packages:
28
+ - clang-3.5
29
30
script:
31
- autoreconf -iv > build.log 2>&1 || (cat build.log && exit 1)
- - ./configure --disable-local-libopts > build.log 2>&1 || (cat build.log && exit 1)
- - make > build.log 2>&1 || (cat build.log && exit 1)
32
+ - ${CI_BUILD_PREFIX} ./configure --disable-local-libopts > build.log 2>&1 || (cat build.log && exit 1)
33
+ - ${CI_BUILD_PREFIX} make > build.log 2>&1 || (cat build.log && exit 1)
34
- make dist > build.log 2>&1 || (cat build.log && exit 1)
35
- sudo make test
0 commit comments