Skip to content

Commit

Permalink
drop msys-gnu appveyor conf and skip appveyor cache restore
Browse files Browse the repository at this point in the history
  • Loading branch information
budziq committed Oct 19, 2017
1 parent 33a2975 commit 7a8fee3
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,35 +4,21 @@
environment:
global:
RUST_VERSION: stable

APPVEYOR_CACHE_SKIP_RESTORE: true
CRATE_NAME: skeptic

matrix:
# MinGW
- TARGET: i686-pc-windows-gnu
- TARGET: x86_64-pc-windows-gnu

# MSVC
- TARGET: i686-pc-windows-msvc
- TARGET: x86_64-pc-windows-msvc

# Testing other channels
- TARGET: x86_64-pc-windows-gnu
RUST_VERSION: beta
- TARGET: x86_64-pc-windows-msvc
RUST_VERSION: beta
- TARGET: x86_64-pc-windows-gnu
RUST_VERSION: nightly
- TARGET: x86_64-pc-windows-msvc
RUST_VERSION: nightly

install:
- ps: >-
If ($Env:TARGET -eq 'x86_64-pc-windows-gnu') {
$Env:PATH += ';C:\msys64\mingw64\bin'
} ElseIf ($Env:TARGET -eq 'i686-pc-windows-gnu') {
$Env:PATH += ';C:\msys64\mingw32\bin'
}
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-host %TARGET% --default-toolchain %RUST_VERSION%
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
Expand All @@ -54,12 +40,9 @@ test_script:

cache:
- C:\Users\appveyor\.cargo\registry
- target

branches:
only:
# Release tags
- /^v\d+\.\d+\.\d+.*$/
- master

notifications:
Expand Down

0 comments on commit 7a8fee3

Please sign in to comment.