]> git.lizzy.rs Git - rust.git/blobdiff - appveyor.yml
macos: symlink rustc dev libs to /usr/local/lib
[rust.git] / appveyor.yml
index e43750c30a6aae38205e685d423c632755327b73..829c781eb0874ae86b4dc7d0d080bb4925349705 100644 (file)
@@ -6,17 +6,27 @@ environment:
         #- TARGET: i686-pc-windows-msvc
         #- TARGET: x86_64-pc-windows-gnu
         - TARGET: x86_64-pc-windows-msvc
-          MSYS2_BITS: 64
+
+branches:
+    # Only build AppVeyor on r+ and try branch
+    only:
+      - auto
+      - try
+
+cache:
+    - '%USERPROFILE%\.cargo'
+after_test:
+    - cargo install -Z install-upgrade cargo-cache --debug
+    - cargo cache --autoclean
 
 install:
-    - set PATH=C:\Program Files\Git\mingw64\bin;%PATH%
-    - del rust-toolchain
     - curl -sSf -o rustup-init.exe https://win.rustup.rs/
-    - rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly
-    - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin;C:\Users\appveyor\.rustup\toolchains\nightly-%TARGET%\bin
-    - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
-    - cargo install rustup-toolchain-install-master || echo "rustup-toolchain-install-master already installed"
+    - rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly --profile=minimal
+    - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
+    - del rust-toolchain
+    - cargo install -Z install-upgrade rustup-toolchain-install-master
     - rustup-toolchain-install-master -f -n master
+    - rustup component add rustfmt --toolchain nightly & exit 0 # Format test handles missing rustfmt
     - rustup default master
     - set PATH=%PATH%;C:\Users\appveyor\.rustup\toolchains\master\bin
     - rustc -V