summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml49
1 files changed, 0 insertions, 49 deletions
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index a8f36ad3..00000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,49 +0,0 @@
-environment:
- global:
- TARGET: x86_64-pc-windows-msvc
- RUST_VERSION: stable
- CRATE_NAME: delta
- CARGO_HOME: "c:\\cargo"
- RUSTUP_HOME: "c:\\rustup"
-
-install:
- - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- - rustup-init.exe -y --default-host %TARGET%
- - set PATH=%PATH%;C:\cargo\bin
- - rustc -Vv
- - cargo -V
-
-build: false
-test_script:
- - cargo test --target %TARGET% --verbose
- - cargo run --target %TARGET% -- --compare-themes
-
-before_deploy:
- # Generate artifacts for release
- - cargo build --release --verbose
- - ps: ci\before_deploy.ps1
-
-deploy:
- description: 'Automatically deployed release'
- artifact: /.*\.zip/
- # Here's how:
- # - Go to 'https://github.com/settings/tokens/new' and generate a Token with only the
- # `public_repo` scope enabled
- # - Then go to 'https://ci.appveyor.com/tools/encrypt' and enter the newly generated token.
- # - Enter the "encrypted value" below
- auth_token:
- secure: cXYUTdv/KNy1SLsiKzp5+0W/roNCgQJOpAw2CA0CFzkvHC1XoLts88VBSBAZn7yU
- provider: GitHub
- on:
- RUST_VERSION: stable
- appveyor_repo_tag: true
-
-cache:
- - C:\Users\appveyor\.cargo\registry
- - target
-
-notifications:
- - provider: Email
- on_build_success: false
- on_build_failure: false
- on_build_status_changed: false