Skip to content

Commit

Permalink
Install rust nightly by default in mac
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Apr 11, 2019
1 parent 7113355 commit 2d01ff0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,15 +218,15 @@ jobs:
- run:
name: Install Rust
command: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly-2019-04-11
export PATH="$HOME/.cargo/bin:$PATH"
cargo --version
# Use rust nightly (for singlepass, for now)
- run:
name: Install Rust nightly
command: |
export PATH="$HOME/.rustup/bin:$PATH"
rustup default nightly-2019-04-11
# - run:
# name: Install Rust nightly
# command: |
# export PATH="$HOME/.rustup/bin:$PATH"
# rustup default nightly-2019-04-11
- run:
name: Tests
command: |
Expand Down

0 comments on commit 2d01ff0

Please sign in to comment.