]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Travis: Require the macOS IPv6 chutney job
authorteor <teor@torproject.org>
Thu, 13 Feb 2020 03:13:40 +0000 (13:13 +1000)
committerteor <teor@torproject.org>
Thu, 13 Feb 2020 03:37:39 +0000 (13:37 +1000)
The job was previously set to fast_finish / allow_failure, to
speed up the build.

Closes ticket 33195.

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

index 73caaa79a8ee45d55034c9da581bdb305330b751..911a5f6ab6383467cd46ab1996cf7a91d68b78bc 100644 (file)
@@ -100,8 +100,10 @@ matrix:
     - env: RUST_VERSION="nightly" RUST_OPTIONS="--enable-rust --enable-cargo-online-mode"
       compiler: clang
       os: osx
-    - env: CHUTNEY="yes" CHUTNEY_ALLOW_FAILURES="2" SKIP_MAKE_CHECK="yes" CHUTNEY_MAKE_TARGET="test-network-ipv6"
-      os: osx
+    ## Since we're actively developing IPv6, we want to require the IPv6
+    ## chutney tests
+    #- env: CHUTNEY="yes" CHUTNEY_ALLOW_FAILURES="2" SKIP_MAKE_CHECK="yes" CHUTNEY_MAKE_TARGET="test-network-ipv6"
+    #  os: osx
 
 ## (Linux only) Use a recent Linux image (Ubuntu Bionic)
 dist: bionic
diff --git a/changes/ticket33195 b/changes/ticket33195
new file mode 100644 (file)
index 0000000..11abd48
--- /dev/null
@@ -0,0 +1,4 @@
+  o Testing:
+    - Stop allowing the Chutney IPv6 Travis job to fail. This job was
+      previously configured to fast_finish (which requires allow_failure), to
+      speed up the build. Closes ticket 33195.