From 5e68b0d51d7a857919468976cea655a379457279 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 7 Sep 2016 13:10:10 -0700 Subject: [PATCH] process: Don't build on stable, start w/ beta for now --- .travis.yml | 2 +- appveyor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e98c3c03e..70c2cdc63 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: rust rust: - - stable + #- stable - beta - nightly sudo: false diff --git a/appveyor.yml b/appveyor.yml index 75c11da0d..9c96de43c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,7 +3,7 @@ environment: - TARGET: x86_64-pc-windows-msvc install: - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - - rustup-init.exe -y --default-host %TARGET% + - rustup-init.exe -y --default-host %TARGET% --default-toolchain beta - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - rustc -V - cargo -V