summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@wezfurlong.org>2019-09-15 17:09:29 -0700
committerWez Furlong <wez@wezfurlong.org>2019-09-15 17:09:29 -0700
commit26157c1685ce10115913ded384c016c2b72a4e68 (patch)
tree8d2245c75f79ebe8ffb85c7fe528c975382ae03f
parent6e4abc138da4cac57f9bd9aad3a7f1fed657d273 (diff)
downloadssh2-rs-26157c1685ce10115913ded384c016c2b72a4e68.zip
remove appveyor configuration
GitHub Actions is faster and has a better UX on PRs
-rw-r--r--appveyor.yml27
1 files changed, 0 insertions, 27 deletions
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index 8338872..0000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-image:
- - Visual Studio 2019
- - Visual Studio 2017
- - Visual Studio 2015
-
-environment:
- matrix:
- - TARGET: x86_64-pc-windows-msvc
- - TARGET: i686-pc-windows-msvc
-install:
- - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
- - rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- - if defined MSYS_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin
- - rustc -V
- - cargo -V
- - if defined VCPKG_DEFAULT_TRIPLET git clone https://github.com/Microsoft/vcpkg c:\projects\vcpkg
- - if defined VCPKG_DEFAULT_TRIPLET c:\projects\vcpkg\bootstrap-vcpkg.bat
- - if defined VCPKG_DEFAULT_TRIPLET set VCPKG_ROOT=c:\projects\vcpkg
- - if defined VCPKG_DEFAULT_TRIPLET echo yes > %VCPKG_ROOT%\Downloads\AlwaysAllowDownloads
- - if defined VCPKG_DEFAULT_TRIPLET %VCPKG_ROOT%\vcpkg.exe install libssh2
-
-build: false
-
-test_script:
- - cargo test --no-run --target %TARGET%
- - cargo run --manifest-path systest/Cargo.toml --target %TARGET%