summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2018-08-23 18:15:55 +1000
committerteor <teor@torproject.org>2018-08-23 18:15:55 +1000
commit99a2ecc79562dc340f73f998e5c441f3a7968e1a (patch)
treead83cdf7603cf0732befc7866a3565054231cfb3 /.travis.yml
parentc1ad40627bbccf2682f56053c77ff719c822cbce (diff)
parent7cea5a287fbf0ed1b9ed92e144ff450c4f93f382 (diff)
downloadtor-99a2ecc79562dc340f73f998e5c441f3a7968e1a.tar.gz
tor-99a2ecc79562dc340f73f998e5c441f3a7968e1a.zip
Merge branch 'ticket27252-029' into ticket27252-032
This commit is already implemented in 0.3.2 and later: - Travis: Skip a duplicate hardening-off build in Tor 0.2.9
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 1b43c721a3..74b9d98dad 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -70,9 +70,17 @@ matrix:
## Clang doesn't work in containerized builds, see below.
- compiler: clang
sudo: false
- ## We also exclude non-containerized gcc, because they're slow and redundant.
+ ## Non-containerized gcc are slow and redundant.
- compiler: gcc
sudo: required
+ ## gcc on OSX is less useful, because the default compiler is clang.
+ - compiler: gcc
+ os: osx
+ ## gcc on Linux with no env is redundant, because all the custom builds use
+ ## gcc on Linux
+ - compiler: gcc
+ os: linux
+ env:
## We don't need sudo. (The "apt:" stanza after this allows us to not need
## sudo; otherwise, we would need it for getting dependencies.)