Remove AppVeyor now that Travis does Windows
[skip ci]
This commit is contained in:
parent
cdbc330d77
commit
a2b0773622
4 changed files with 0 additions and 74 deletions
|
|
@ -16,7 +16,6 @@ categories = ["email", "network-programming"]
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
travis-ci = { repository = "jonhoo/rust-imap" }
|
travis-ci = { repository = "jonhoo/rust-imap" }
|
||||||
appveyor = { repository = "jonhoo/rust-imap", branch = "master", service = "github" }
|
|
||||||
codecov = { repository = "jonhoo/rust-imap", branch = "master", service = "github" }
|
codecov = { repository = "jonhoo/rust-imap", branch = "master", service = "github" }
|
||||||
maintenance = { status = "actively-developed" }
|
maintenance = { status = "actively-developed" }
|
||||||
is-it-maintained-issue-resolution = { repository = "jonhoo/rust-imap" }
|
is-it-maintained-issue-resolution = { repository = "jonhoo/rust-imap" }
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
[](https://docs.rs/imap/)
|
[](https://docs.rs/imap/)
|
||||||
[](https://crates.io/crates/imap)
|
[](https://crates.io/crates/imap)
|
||||||
[](https://travis-ci.org/jonhoo/rust-imap)
|
[](https://travis-ci.org/jonhoo/rust-imap)
|
||||||
[](https://ci.appveyor.com/api/projects/status/github/jonhoo/rust-imap)
|
|
||||||
[](https://codecov.io/gh/jonhoo/rust-imap)
|
[](https://codecov.io/gh/jonhoo/rust-imap)
|
||||||
|
|
||||||
This crate lets you connect to and interact with servers that implement the IMAP protocol ([RFC
|
This crate lets you connect to and interact with servers that implement the IMAP protocol ([RFC
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
[](https://docs.rs/imap/)
|
[](https://docs.rs/imap/)
|
||||||
[](https://crates.io/crates/imap)
|
[](https://crates.io/crates/imap)
|
||||||
[](https://travis-ci.org/jonhoo/rust-imap)
|
[](https://travis-ci.org/jonhoo/rust-imap)
|
||||||
[](https://ci.appveyor.com/api/projects/status/github/jonhoo/rust-imap)
|
|
||||||
[](https://codecov.io/gh/jonhoo/rust-imap)
|
[](https://codecov.io/gh/jonhoo/rust-imap)
|
||||||
|
|
||||||
{{readme}}
|
{{readme}}
|
||||||
|
|
|
||||||
71
appveyor.yml
71
appveyor.yml
|
|
@ -1,71 +0,0 @@
|
||||||
# inspired by https://github.com/starkat99/appveyor-rust/blob/master/appveyor.yml
|
|
||||||
|
|
||||||
environment:
|
|
||||||
matrix:
|
|
||||||
|
|
||||||
### MSVC Toolchains ###
|
|
||||||
|
|
||||||
# Stable 64-bit MSVC
|
|
||||||
- channel: stable
|
|
||||||
target: x86_64-pc-windows-msvc
|
|
||||||
# Stable 32-bit MSVC
|
|
||||||
- channel: stable
|
|
||||||
target: i686-pc-windows-msvc
|
|
||||||
# Beta 64-bit MSVC
|
|
||||||
- channel: beta
|
|
||||||
target: x86_64-pc-windows-msvc
|
|
||||||
# Beta 32-bit MSVC
|
|
||||||
- channel: beta
|
|
||||||
target: i686-pc-windows-msvc
|
|
||||||
|
|
||||||
### GNU Toolchains ###
|
|
||||||
|
|
||||||
# Stable 64-bit GNU
|
|
||||||
- channel: stable
|
|
||||||
target: x86_64-pc-windows-gnu
|
|
||||||
# Stable 32-bit GNU
|
|
||||||
- channel: stable
|
|
||||||
target: i686-pc-windows-gnu
|
|
||||||
# Beta 64-bit GNU
|
|
||||||
- channel: beta
|
|
||||||
target: x86_64-pc-windows-gnu
|
|
||||||
# Beta 32-bit GNU
|
|
||||||
- channel: beta
|
|
||||||
target: i686-pc-windows-gnu
|
|
||||||
|
|
||||||
### MinGW Toolchains ###
|
|
||||||
|
|
||||||
# Stable 64-bit MinGW
|
|
||||||
- channel: stable
|
|
||||||
target: x86_64-pc-windows-msvc
|
|
||||||
MSYS_BITS: 64
|
|
||||||
# Stable 32-bit MinGW
|
|
||||||
- channel: stable
|
|
||||||
target: i686-pc-windows-msvc
|
|
||||||
MSYS_BITS: 32
|
|
||||||
# Beta 64-bit MinGW
|
|
||||||
- channel: beta
|
|
||||||
target: x86_64-pc-windows-msvc
|
|
||||||
MSYS_BITS: 64
|
|
||||||
# Beta 32-bit MinGW
|
|
||||||
- channel: beta
|
|
||||||
target: i686-pc-windows-msvc
|
|
||||||
MSYS_BITS: 32
|
|
||||||
|
|
||||||
install:
|
|
||||||
# install Rust
|
|
||||||
- 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 -vV
|
|
||||||
- cargo -vV
|
|
||||||
|
|
||||||
# Building is done in the test phase, so we disable Appveyor's build phase.
|
|
||||||
build: false
|
|
||||||
|
|
||||||
test_script:
|
|
||||||
- cargo check --all-targets
|
|
||||||
- cargo test --lib
|
|
||||||
- cargo test --doc
|
|
||||||
- cargo test --examples
|
|
||||||
# note that we are not running integration tests!
|
|
||||||
Loading…
Add table
Reference in a new issue