diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index 2505932..0000000 --- a/.appveyor.yml +++ /dev/null @@ -1,67 +0,0 @@ -environment: - global: - CHANNEL: stable - #APPVEYOR_CACHE_SKIP_RESTORE: true # Uncomment when caching causes problems - - matrix: - # Stable channel - - TARGET: x86_64-pc-windows-msvc - CHANNEL: stable - - TARGET: x86_64-pc-windows-gnu - CHANNEL: stable - - TARGET: i686-pc-windows-msvc - CHANNEL: stable - - TARGET: i686-pc-windows-gnu - CHANNEL: stable - # Beta channel - - TARGET: x86_64-pc-windows-msvc - CHANNEL: beta - - TARGET: x86_64-pc-windows-gnu - CHANNEL: beta - - TARGET: i686-pc-windows-msvc - CHANNEL: beta - - TARGET: i686-pc-windows-gnu - CHANNEL: beta - # 1.21.0 - - TARGET: x86_64-pc-windows-msvc - CHANNEL: 1.21.0 - - TARGET: x86_64-pc-windows-gnu - CHANNEL: 1.21.0 - - TARGET: i686-pc-windows-msvc - CHANNEL: 1.21.0 - - TARGET: i686-pc-windows-gnu - CHANNEL: 1.21.0 - # 1.13.0 - - TARGET: x86_64-pc-windows-msvc - CHANNEL: 1.13.0 - - TARGET: x86_64-pc-windows-gnu - CHANNEL: 1.13.0 - - TARGET: i686-pc-windows-msvc - CHANNEL: 1.13.0 - - TARGET: i686-pc-windows-gnu - CHANNEL: 1.13.0 - -install: -- ps: >- - $Env:PATH += ';C:\msys64\usr\bin' -- curl -sSf -o rustup-init.exe https://win.rustup.rs/ -- rustup-init.exe -y --default-host %TARGET% --default-toolchain %CHANNEL% -- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin -- rustc -Vv -- cargo -V - -test_script: -- cargo build --verbose -- set RUST_BACKTRACE=full -- cargo test --verbose -- --nocapture - -cache: -- C:\Users\appveyor\.cargo\registry -- target - -notifications: -- provider: Email - on_build_success: false - -# Building is done in the test phase, so we disable Appveyor's build phase. -build: false diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index eb41ded..0000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -sudo: false - -language: rust - -os: -- linux -- osx - -rust: -- stable -- beta -- 1.21.0 -- 1.13.0 - -install: -- rustc -Vv -- cargo -V - -script: -- cargo build --verbose -- RUST_BACKTRACE=full cargo test --verbose -- --nocapture - -cache: - cargo: true