From 2d01ff0a6d689bacefd409bab4d5691cdbf2b601 Mon Sep 17 00:00:00 2001 From: Syrus Date: Thu, 11 Apr 2019 16:54:49 -0700 Subject: [PATCH] Install rust nightly by default in mac --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9fbaad147..b1d76a212 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: |