We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8bb7795 + 6c4647e commit 386683cCopy full SHA for 386683c
.travis.yml
@@ -1,7 +1,8 @@
1
cache: cargo
2
dist: trusty
3
language: rust
4
-rust: nightly
+# NOTE(nightly-2016-12-05) work around for rust-lang/rust#38281
5
+rust: nightly-2016-12-05
6
services: docker
7
sudo: required
8
@@ -43,6 +44,9 @@ install:
43
44
esac
45
46
script:
47
+ # work around rust-lang/cargo#3340
48
+ - test "$TRAVIS_OS_NAME" = "osx" ||
49
+ export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
50
- cargo generate-lockfile
51
- if [[ $TRAVIS_OS_NAME = "linux" ]]; then
52
sudo apt-get remove -y qemu-user-static &&
ci/run.sh
@@ -1,4 +1,4 @@
-set -e
+set -ex
# Test our implementation
case $1 in
0 commit comments