]> git.lizzy.rs Git - rust.git/blobdiff - appveyor.yml
rustup https://github.com/rust-lang/rust/pull/61836/
[rust.git] / appveyor.yml
index fb0b326c713b0c1c14d2c791b256dca8f27249a9..2d8704a703bcd6655e7fb2c30215d1306dfec939 100644 (file)
@@ -8,11 +8,11 @@ environment:
         - TARGET: x86_64-pc-windows-msvc
 
 branches:
-    # Don't build these branches
-    except:
-        # Used by bors
-        - trying.tmp
-        - staging.tmp
+    # Only build AppVeyor on r+, try and the master branch
+    only:
+      - auto
+      - try
+      - master
 
 install:
     - curl -sSf -o rustup-init.exe https://win.rustup.rs/
@@ -21,7 +21,7 @@ install:
     - git ls-remote https://github.com/rust-lang/rust.git master | awk '{print $1}' >rustc-hash.txt
     - set /p RUSTC_HASH=<rustc-hash.txt
     - del rust-toolchain
-    - cargo install rustup-toolchain-install-master || echo "rustup-toolchain-install-master already installed"
+    - cargo install rustup-toolchain-install-master --debug || echo "rustup-toolchain-install-master already installed"
     - rustup-toolchain-install-master %RUSTC_HASH% -f -n master
     - rustup default master
     - set PATH=%PATH%;C:\Users\appveyor\.rustup\toolchains\master\bin