]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Travis: allow the test-stem job to fail
authorteor <teor@torproject.org>
Mon, 10 Jun 2019 09:18:35 +0000 (19:18 +1000)
committerteor <teor@torproject.org>
Mon, 10 Jun 2019 09:18:35 +0000 (19:18 +1000)
Allow the test-stem job to fail in Travis, because it sometimes hangs.

Fixes bug 30744; bugfix on 0.3.5.4-alpha.

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

index 89040d8222bf3223376fa6b131540291631457ee..a1a48baffef18c318788d4757c1fcfdf34029b48 100644 (file)
@@ -70,6 +70,10 @@ matrix:
   ## Careful! We use global envs, which makes it hard to exclude or
   ## allow failures by env:
   ## https://docs.travis-ci.com/user/customizing-the-build#matching-jobs-with-allow_failures
+  allow_failures:
+    ## test-stem sometimes hangs on Travis
+    - env: TEST_STEM="yes"
+
   exclude:
     ## Clang doesn't work in containerized builds, see below.
     - compiler: clang
diff --git a/changes/bug30744 b/changes/bug30744
new file mode 100644 (file)
index 0000000..9f07d48
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor bugfixes (continuous integration):
+    - Allow the test-stem job to fail in Travis, because it sometimes hangs.
+      Fixes bug 30744; bugfix on 0.3.5.4-alpha.