From c53b1610f0e2f9f6485ae1444ab8815cc4314f62 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Thu, 18 Jul 2019 18:40:31 +1200 Subject: [PATCH] Delete appveyor.yml --- appveyor.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 770f32a2a9..0000000000 --- a/appveyor.yml +++ /dev/null @@ -1,31 +0,0 @@ -image: Visual Studio 2017 - -environment: - global: - PROJECT_NAME: nushell - RUST_BACKTRACE: 1 - matrix: - - TARGET: x86_64-pc-windows-msvc - CHANNEL: nightly - BITS: 64 - -install: - - set PATH=C:\msys64\mingw%BITS%\bin;C:\msys64\usr\bin;%PATH% - - curl -sSf -o rustup-init.exe https://win.rustup.rs - # Install rust - - rustup-init.exe -y --default-host %TARGET% --default-toolchain %CHANNEL%-%TARGET% - - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - # Required for Racer autoconfiguration - - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" - - -build: false - -test_script: - # compile #[cfg(not(test))] code - - cargo build --verbose - - cargo test --all --verbose - -cache: - - target -> Cargo.lock - - C:\Users\appveyor\.cargo\registry -> Cargo.lock