Update Travis config file
parent
3bb801101f
commit
4f5dd74286
15
.travis.yml
15
.travis.yml
|
|
@ -7,7 +7,7 @@ os:
|
||||||
dist: trusty
|
dist: trusty
|
||||||
sudo: false
|
sudo: false
|
||||||
|
|
||||||
# OS X only supports one image. Us the latest.
|
# OS X only supports one image. Use the latest.
|
||||||
osx_image: xcode8.2
|
osx_image: xcode8.2
|
||||||
|
|
||||||
git:
|
git:
|
||||||
|
|
@ -36,7 +36,6 @@ env:
|
||||||
|
|
||||||
# The sanitizer builds under Clang run the tests very
|
# The sanitizer builds under Clang run the tests very
|
||||||
# slowly and cause CI timeouts.
|
# slowly and cause CI timeouts.
|
||||||
|
|
||||||
- compiler: clang
|
- compiler: clang
|
||||||
env: BUILD_MODE="asan"
|
env: BUILD_MODE="asan"
|
||||||
- compiler: clang
|
- compiler: clang
|
||||||
|
|
@ -44,10 +43,22 @@ env:
|
||||||
- compiler: clang
|
- compiler: clang
|
||||||
env: BUILD_MODE="valgrind"
|
env: BUILD_MODE="valgrind"
|
||||||
|
|
||||||
|
script:
|
||||||
|
- make clean &>/dev/null && make
|
||||||
|
- ./cryptest.exe v && ./cryptest.exe tv all
|
||||||
|
|
||||||
# whitelist branches to avoid testing feature branches twice
|
# whitelist branches to avoid testing feature branches twice
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
|
addons:
|
||||||
|
sonarqube: true
|
||||||
|
|
||||||
|
coverity_scan:
|
||||||
|
project:
|
||||||
|
name: "cryptopp"
|
||||||
|
build_command: "make -j 2"
|
||||||
|
|
||||||
#notifications:
|
#notifications:
|
||||||
# email: jdoe@example.com
|
# email: jdoe@example.com
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue