diff options
author | Matt Caswell <matt@openssl.org> | 2017-06-23 14:58:49 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2017-06-23 18:57:02 +0200 |
commit | 404c76f4ee1dc51c0d200e2b60a6340aadb44e38 (patch) | |
tree | 6689574a30edc4585948cab3217c2514046e2db8 /.travis-apt-pin.preferences | |
parent | Fix another EVP_DigestVerify() instance (diff) | |
download | openssl-404c76f4ee1dc51c0d200e2b60a6340aadb44e38.tar.xz openssl-404c76f4ee1dc51c0d200e2b60a6340aadb44e38.zip |
Fix travis clang-3.9 builds
Something environmental changed in travis so that it started preferring
the ubuntu clang-3.9 version instead of the llvm.org one. This breaks the
sanitiser based builds. This change forces travis to de-prioritise the
ubuntu clang packages.
[extended tests]
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3759)
Diffstat (limited to '.travis-apt-pin.preferences')
-rw-r--r-- | .travis-apt-pin.preferences | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.travis-apt-pin.preferences b/.travis-apt-pin.preferences new file mode 100644 index 0000000000..1797bd0414 --- /dev/null +++ b/.travis-apt-pin.preferences @@ -0,0 +1,15 @@ +Package: clang-3.9 +Pin: release o=Ubuntu +Pin-Priority: -1 + +Package: libclang-common-3.9-dev +Pin: release o=Ubuntu +Pin-Priority: -1 + +Package: libclang1-3.9 +Pin: release o=Ubuntu +Pin-Priority: -1 + +Package: libllvm3.9v4 +Pin: release o=Ubuntu +Pin-Priority: -1 |