]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Travis: skip gcc on OSX, because the default compiler is clang
authorteor <teor@torproject.org>
Thu, 23 Aug 2018 07:00:42 +0000 (17:00 +1000)
committerteor <teor@torproject.org>
Thu, 23 Aug 2018 07:02:32 +0000 (17:02 +1000)
Part of #27252.

.travis.yml
changes/ticket27252 [new file with mode: 0644]

index 8b8621007e50673c7f94219beddca72029cd5231..102b5003084142826ddd5a7944cc53907f6324aa 100644 (file)
@@ -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 (file)
index 0000000..f0855db
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor features (continuous integration):
+    - Skip gcc on OSX in Travis CI, it's rarely used.
+      Implements ticket 27252.