Skip to content

Split up Travis into 4 jobs and pin to a specific nightly for SGX #66

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 5 commits into from
Oct 8, 2019
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
14 changes: 6 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ branches:
# Not really necessary, just to get a green badge on “master”
- master
language: rust
os: linux
dist: xenial
addons:
apt:
Expand All @@ -16,20 +17,17 @@ addons:
- clang-3.8
- cmake
rust:
- stable
- beta
matrix:
allow_failures:
- rust: beta
- stable
- beta
- nightly-2019-07-01
- nightly-2019-07-11
env:
global:
- RUST_BACKTRACE=1
# Pinned to this particular nightly version because of core_io. This can be
# re-pinned whenever core_io is updated to the latest nightly.
- CORE_IO_NIGHTLY=nightly-2019-07-01
- SGX_NIGHTLY=nightly-2019-07-11
- LLVM_CONFIG_PATH=llvm-config-3.8
script:
- rustup toolchain add $CORE_IO_NIGHTLY
- rustup toolchain add nightly
- rustup target add --toolchain nightly x86_64-fortanix-unknown-sgx
- ./ct.sh
Loading