From fef929c1ecc3a3f41f95e1f4d7b6d717e4ee6eb8 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 25 Jul 2019 22:53:48 +0200 Subject: Remove Travis and Appveyor configuration --- .travis.yml | 20 -------------------- appveyor.yml | 20 -------------------- 2 files changed, 40 deletions(-) delete mode 100644 .travis.yml delete mode 100644 appveyor.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 343cc63..0000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: rust -rust: - - stable - - beta - - nightly -cache: cargo - -before_script: -- if [[ "${TRAVIS_RUST_VERSION}" == stable ]]; then - rustup component add rustfmt; - fi - -script: -- cargo test --all -- if [[ "${TRAVIS_RUST_VERSION}" == stable ]]; then - cd testing && cargo test --features full && cargo fmt -- --check; - fi -- if [[ "${TRAVIS_RUST_VERSION}" == nightly ]]; then - cd testing && cargo test --features with-rocket; - fi diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index cdd4e4d..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,20 +0,0 @@ -environment: - matrix: - - TARGET: x86_64-pc-windows-msvc - OTHER_TARGET: i686-pc-windows-msvc - MAKE_TARGETS: test-unit-x86_64-pc-windows-msvc - -install: - - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe - - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain stable - - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - - rustup target add %OTHER_TARGET% - - rustc -V - - cargo -V - -clone_depth: 1 - -build: false - -test_script: - - cargo test -- cgit