aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2019-09-24 08:04:41 -0400
committerNick Mathewson <nickm@torproject.org>2019-09-24 08:04:41 -0400
commit70711448592d384481e9914829c8e409b53833dd (patch)
treed9cef3f981ed70089b546734567e2b549bf0ab65 /.travis.yml
parent0cb57a490845815ef6165f00e8a774c184516903 (diff)
parent836b7a538e026d7293430494ea4187e26c6846bf (diff)
downloadtor-70711448592d384481e9914829c8e409b53833dd.tar.gz
tor-70711448592d384481e9914829c8e409b53833dd.zip
Merge branch 'ticket31372_041' into ticket31372_042
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 94d9bf9cce..2073b853ce 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,8 +22,10 @@ os:
## OS and compiler.
env:
global:
- ## The Travis CI environment allows us two cores, so let's use both.
- - MAKEFLAGS="-j 2"
+ ## The Travis CI environment allows us two cores, so let's use both. Also,
+ ## let's use the "-k" flag so that we get all of the compilation failures,
+ ## not just the first one.
+ - MAKEFLAGS="-k -j 2"
## We turn on hardening by default
## Also known as --enable-fragile-hardening in 0.3.0.3-alpha and later
- HARDENING_OPTIONS="--enable-expensive-hardening"