From 2522e787d15cb7317245efa5011941dac837489e Mon Sep 17 00:00:00 2001 From: David Hotham Date: Sun, 22 Oct 2023 16:47:32 +0100 Subject: [PATCH] remove appveyor --- appveyor.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 31c2389..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,35 +0,0 @@ -image: Visual Studio 2017 -branches: - only: - - master -environment: - matrix: - - target: x86_64-pc-windows-msvc - channel: stable - - target: i686-pc-windows-msvc - channel: stable - - target: x86_64-pc-windows-msvc - channel: beta - - target: i686-pc-windows-msvc - channel: beta - - target: x86_64-pc-windows-msvc - channel: nightly - - target: i686-pc-windows-msvc - channel: nightly -matrix: - allow_failures: - - channel: nightly -install: - - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe - - rustup-init -yv --default-toolchain %channel% --default-host %target% - - set PATH=%PATH%;%USERPROFILE%\.cargo\bin - - rustc -V - - cargo -V - -build: false - -test_script: - - cargo build - - if [%channel%]==[nightly] (cargo update -Z minimal-versions) - - if [%channel%]==[nightly] (cargo build) -