diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-09-24 08:04:20 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-09-24 08:04:20 -0400 |
commit | 836b7a538e026d7293430494ea4187e26c6846bf (patch) | |
tree | 7dd48f2aa1c73f695187e407f7dc15fd00c30a31 /.travis.yml | |
parent | 6f3f93d86c03a7e38e6ba5b64e487aebcd0642bc (diff) | |
parent | 246fdd87424e8e1345aba20ac5d22c07ce082da4 (diff) | |
download | tor-836b7a538e026d7293430494ea4187e26c6846bf.tar.gz tor-836b7a538e026d7293430494ea4187e26c6846bf.zip |
Merge branch 'ticket31372_040' into ticket31372_041
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index bbba0e2048..4d821b06aa 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" |