We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c2e1d5 commit 9b1508dCopy full SHA for 9b1508d
.travis.yml
@@ -11,6 +11,9 @@ before_script:
11
- |
12
pip install 'travis-cargo<0.2' --user &&
13
export PATH=$HOME/.local/bin:$PATH
14
+ if [ "${TRAVIS_RUST_VERSION}" = "nightly" ]; then
15
+ rustup target add x86_64-fortanix-unknown-sgx;
16
+ fi
17
18
script:
19
- cd core;
@@ -22,6 +25,7 @@ script:
22
25
- travis-cargo test
23
26
- travis-cargo --only stable test -- --features=deadlock_detection
24
27
- travis-cargo --only beta test -- --features=deadlock_detection
28
+- travis-cargo --only nightly test -- --all --no-run --target x86_64-fortanix-unknown-sgx
29
- travis-cargo --only nightly doc -- --all-features --no-deps -p parking_lot -p parking_lot_core -p lock_api
30
- cd benchmark
31
- travis-cargo build
0 commit comments