Skip to content

Commit 60e11d8

Browse files
committed
Force cleanup prior to compiletests
1 parent 79be7fa commit 60e11d8

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ script:
1515
travis-cargo --only nightly build -- --features spin_no_std &&
1616
travis-cargo --only nightly test -- --features spin_no_std &&
1717
travis-cargo --only nightly bench -- --features spin_no_std &&
18+
travis-cargo --only nightly clean &&
1819
travis-cargo --only nightly build -- --features compiletest &&
1920
travis-cargo --only nightly test -- --features compiletest &&
21+
travis-cargo --only nightly clean &&
2022
travis-cargo --only stable doc
2123
after_success:
2224
- travis-cargo --only stable doc-upload

appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,6 @@ build: false
5252
test_script:
5353
- cargo build --verbose --target %TARGET%
5454
- cargo test --target %TARGET%
55+
- if "%CHANNEL%" == "nightly" cargo clean
5556
- if "%CHANNEL%" == "nightly" cargo build --verbose --target %TARGET% --features "compiletest"
5657
- if "%CHANNEL%" == "nightly" cargo test --target %TARGET% --features "compiletest"

0 commit comments

Comments
 (0)