summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2019-10-23 08:32:52 +1000
committerteor <teor@torproject.org>2019-10-23 08:32:52 +1000
commitc77162e4e95fdfd6a5cc422802dee943750b14b7 (patch)
treee3f64dae66962fe754788411b3b91e95f92e756c /.travis.yml
parent27965f1ef2ff44e2ce7e3f1af72f9112fb30bde5 (diff)
parentda5c8277eacc3a18234373228da1397f36112e19 (diff)
downloadtor-c77162e4e95fdfd6a5cc422802dee943750b14b7.tar.gz
tor-c77162e4e95fdfd6a5cc422802dee943750b14b7.zip
Merge remote-tracking branch 'tor-github/pr/1360' into maint-0.3.5
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 1523ba8ca6..8f7e8e4be1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,8 +20,10 @@ os:
## Instead, we list each job under matrix: include:
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"