]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Travis: Skip offline rust builds for Linux gcc
authorteor <teor@torproject.org>
Thu, 23 Aug 2018 07:24:38 +0000 (17:24 +1000)
committerteor <teor@torproject.org>
Thu, 23 Aug 2018 08:18:14 +0000 (18:18 +1000)
We already do an online rust build for Linux gcc.

Part of 27252.

.travis.yml
changes/ticket27252-032

index 578a671d9fa5f48ee48e078a0c66bba869dbbb03..bbf0b575bb477959d44cf3b791cc6a831b3e95c1 100644 (file)
@@ -81,6 +81,12 @@ matrix:
     - compiler: gcc
       os: linux
       env:
+    ## offline rust builds for gcc on Linux are redundant, because we do an
+    ## online rust build for gcc on Linux
+    - compiler: gcc
+      os: linux
+      ## TOR_RUST_DEPENDENCIES is spelt RUST_DEPENDENCIES in 0.3.2
+      env: RUST_OPTIONS="--enable-rust" RUST_DEPENDENCIES=true HARDENING_OPTIONS=""
 
 ## We don't need sudo. (The "apt:" stanza after this allows us to not need
 ## sudo; otherwise, we would need it for getting dependencies.)
index 5761f04d69f15d9f3f99d2a946dff321b5647e01..4752aedcf631305c35a51015d1b19b8b7f4848e8 100644 (file)
@@ -1,3 +1,5 @@
   o Minor features (continuous integration):
     - Only run one online rust build in Travis, to reduce network errors.
+      Skip offline rust builds on Travis for Linux gcc, because they're
+      redundant.
       Implements ticket 27252.