aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Duerr <chrisduerr@users.noreply.github.com>2019-01-19 22:41:24 +0000
committerGitHub <noreply@github.com>2019-01-19 22:41:24 +0000
commit5096426f9e15a21bf78b23160f7c95a9ea2bd7f5 (patch)
treec1cbada35a495cc63b3745b3ea8591c7938e30aa
parent693edaab3f0ea7e251e07075e9cc8cd61bbed802 (diff)
downloadalacritty-5096426f9e15a21bf78b23160f7c95a9ea2bd7f5.tar.gz
alacritty-5096426f9e15a21bf78b23160f7c95a9ea2bd7f5.zip
Remove Appveyor CI builds
This completely removes all Appveyor CI build jobs to move Alacritty to a singular CI provider for all platforms. To ensure that Windows is still properly tested, the allowed failure for the stable Windows build job on travis has been removed. This fixes #1679.
-rw-r--r--.travis.yml1
-rw-r--r--appveyor.yml64
2 files changed, 0 insertions, 65 deletions
diff --git a/.travis.yml b/.travis.yml
index 69277315..41f34e8c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,7 +24,6 @@ matrix:
env: ARCH=i386
allow_failures:
- rust: nightly
- - os: windows
install: ci/install.sh
script: ci/script.sh
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index b039c19b..00000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,64 +0,0 @@
-# Based on the "trust" template v0.1.1
-# https://github.com/japaric/trust/tree/v0.1.1
-
-environment:
- global:
- CRATE_NAME: alacritty
- RUST_BACKTRACE: 1
- APPVEYOR_SAVE_CACHE_ON_ERROR: true
-
- matrix:
- - platform: x86_64
- TARGET: x86_64-pc-windows-msvc
- RUST_VERSION: stable
- CLIPPY: false
-
- - platform: x86_64
- TARGET: x86_64-pc-windows-msvc
- RUST_VERSION: nightly
- CLIPPY: true
-
-matrix:
- allow_failures:
- - CLIPPY: true
-
-shallow_clone: true
-
-install:
- - curl -sSf -o rustup-init.exe https://win.rustup.rs/
- - rustup-init.exe -y --default-host %TARGET% --default-toolchain %RUST_VERSION%
- - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- - rustc -Vv
- - cargo -V
-
-build_script:
- # Only build once per architecture
- - if [%CLIPPY%]==[false] (
- cargo +%RUST_TOOLCHAIN% build --release
- )
-
-before_test:
- - If [%CLIPPY%]==[true] (
- rustup component add clippy-preview
- )
-
-test_script:
- - if [%CLIPPY%]==[true] (
- cargo +%RUST_TOOLCHAIN% clippy
- )
- else (
- cargo +%RUST_TOOLCHAIN% test &
- copy target\debug\winpty-agent.exe target\debug\deps &
- cargo +%RUST_TOOLCHAIN% test -p winpty
- )
-
-cache:
- # Ideally we'd also cache the toolchain but it's too large to fit in the free cache.
- # Building alacritty takes significantly longer than downloading the toolchain.
- - target
-
-artifacts:
- - path: target\release\alacritty.exe
- name: Alacritty
- - path: target\release\winpty-agent.exe
- name: Winpty agent