Skip to content

fix the test suite for the thumb targets #125

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
cache: cargo
dist: trusty
language: rust
rust: nightly
# NOTE(nightly-2016-12-05) work around for rust-lang/rust#38281
rust: nightly-2016-12-05
services: docker
sudo: required

Expand Down Expand Up @@ -43,6 +44,9 @@ install:
esac

script:
# work around rust-lang/cargo#3340
- test "$TRAVIS_OS_NAME" = "osx" ||
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
- cargo generate-lockfile
- if [[ $TRAVIS_OS_NAME = "linux" ]]; then
sudo apt-get remove -y qemu-user-static &&
Expand Down
2 changes: 1 addition & 1 deletion ci/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set -e
set -ex

# Test our implementation
case $1 in
Expand Down