diff --git a/.travis.yml b/.travis.yml index 6ebe83fdcc7..412765d3a03 100644 --- a/.travis.yml +++ b/.travis.yml @@ -90,7 +90,7 @@ install: - sudo pip install awscli - aws configure set preview.cloudfront true - curl https://static.rust-lang.org/rustup.sh | - sh -s -- --prefix=$HOME/rust --spec=nightly-2016-05-10 --with-target=$TARGET + sh -s -- --prefix=$HOME/rust --spec=stable --with-target=$TARGET script: - mkdir target diff --git a/appveyor.yml b/appveyor.yml index d4dee0c52d4..36c04da599e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -22,7 +22,7 @@ install: - curl -sSf -o rustup-init.exe https://dev-static.rust-lang.org/rustup/dist/i686-pc-windows-gnu/rustup-init.exe - rustup-init.exe -y - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - - rustup default nightly-2016-05-10-x86_64-pc-windows-msvc + - rustup default stable-x86_64-pc-windows-msvc # Install the target we're compiling for - if NOT "%TARGET%" == "x86_64-pc-windows-msvc" rustup target add %TARGET%