Skip to content
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

ci: free the nightly version of Rust #406

Merged
merged 2 commits into from
Mar 31, 2020
Merged
Changes from 1 commit
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
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: rust
rust: nightly-2020-02-07
rust: nightly

branches:
only:
Expand All @@ -13,7 +13,7 @@ env:
before_install:
# Check how much space we've got on this machine.
- df -h
- rustup target add wasm32-unknown-unknown --toolchain nightly-2020-02-07
- rustup target add wasm32-unknown-unknown --toolchain nightly


jobs:
Expand All @@ -22,16 +22,16 @@ jobs:
script: .maintain/ci/fmt_script.sh

- stage: Build
env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=native
env: RUST_TOOLCHAIN=nightly TARGET=native
script: .maintain/ci/build_script.sh

- stage: Build
env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=wasm
env: RUST_TOOLCHAIN=nightly TARGET=wasm
script: .maintain/ci/build_script.sh

# over the time limitation, so we comment this
# - stage: Overall Test
# env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=native
# env: RUST_TOOLCHAIN=nightly TARGET=native
# script: .maintain/ci/test_script.sh

after_script:
Expand Down