[tor-commits] [tor/release-0.3.3] Travis: skip gcc on OSX, because the default compiler is clang

nickm at torproject.org nickm at torproject.org
Tue Sep 11 17:09:28 UTC 2018


commit 8f89fb8f398c365588d456625c77cdaee97c77bd
Author: teor <teor at torproject.org>
Date:   Thu Aug 23 17:00:42 2018 +1000

    Travis: skip gcc on OSX, because the default compiler is clang
    
    Part of #27252.
---
 .travis.yml         | 3 +++
 changes/ticket27252 | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 8b8621007..102b50030 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -58,6 +58,9 @@ matrix:
     ## We also exclude non-containerized gcc, because they're slow and redundant.
     - compiler: gcc
       sudo: required
+    ## And skip gcc on OSX, because the default compiler is clang
+    - compiler: gcc
+      os: osx
 
 ## We don't need sudo. (The "apt:" stanza after this allows us to not need
 ## sudo; otherwise, we would need it for getting dependencies.)
diff --git a/changes/ticket27252 b/changes/ticket27252
new file mode 100644
index 000000000..f0855db1d
--- /dev/null
+++ b/changes/ticket27252
@@ -0,0 +1,3 @@
+  o Minor features (continuous integration):
+    - Skip gcc on OSX in Travis CI, it's rarely used.
+      Implements ticket 27252.





More information about the tor-commits mailing list