summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2017-12-18 17:20:02 -0800
committerGitHub <noreply@github.com>2017-12-18 17:20:02 -0800
commit018ff661d60cfc4801a2178fdb4f91181a8a69ee (patch)
treebe9b91bc64addfb57c81481662d358594586141f /.travis.yml
parente764be08256591dfa183d7b3adc750394921574f (diff)
Fix travis write errors. (#1445)
For reasons unknown, after the latest update of the Trusty environment on Travis, we encountered write errors for the three Clang builds. As suggested here https://github.com/travis-ci/travis-ci/issues/4704#issuecomment-321777557, adding filter_secrets: false to the .travis.yml fixes the problem. Note: switching back to the deprecated builds did not fix the problem.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index edb29e767..667dab3e4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,11 @@
+# Fix Travis write errors on Clang builds. These write errors occurred after
+# a Travis update to new Trusty images on Dec. 12th 2017. The reason for these
+# write errors is unknown. Using the deprecated builds did not fix the problem.
+# Setting 'filter_secrets: false' as suggested here
+# https://github.com/travis-ci/travis-ci/issues/4704#issuecomment-321777557
+# fixes the problem.
+filter_secrets: false
+
language: cpp
cache:
- apt
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback