Remove appveyor

This commit is contained in:
Félix Saparelli 2019-10-28 13:05:33 +13:00
parent 24204e7b71
commit e54b7f2427
No known key found for this signature in database
GPG Key ID: 25940898BB90EA51
6 changed files with 21 additions and 61 deletions

View File

@ -1,13 +1,17 @@
root = true
[*]
indent_style = tab
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[Makefile]
indent_style = tab
indent_size = 8
[*.toml]
indent_size = 2

View File

@ -1,44 +0,0 @@
environment:
global:
PROJECT_NAME: watchexec
matrix:
- TARGET: x86_64-pc-windows-gnu
CHANNEL: stable
# Install Rust and Cargo
# (Based on from https://github.com/rust-lang/libc/blob/master/appveyor.yml)
install:
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe --default-host %TARGET% --default-toolchain %CHANNEL% -y
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
- rustc -V
- cargo -V
# ???
build: false
# Equivalent to Travis' `script` phase
test_script:
- cargo test --verbose
before_deploy:
# Generate artifacts for release
- cargo build --release --locked
- mkdir staging
- copy target\release\watchexec.exe staging
- copy LICENSE staging\LICENSE.txt
- cd staging
- 7z a ../%PROJECT_NAME%-%APPVEYOR_REPO_TAG_NAME%-%TARGET%.zip *
- appveyor PushArtifact ../%PROJECT_NAME%-%APPVEYOR_REPO_TAG_NAME%-%TARGET%.zip
deploy:
description: 'Automatically deployed release'
artifact: /.*\.zip/
#auth_token:
# secure: OkayPFKJ16PAH15rWQBdEQDgd3tlNP/ZcssaunpK9AHU+t9zZlO5qvUAok1JT3lR
#provider: GitHub
provider: Webhook
url: https://example.com/goes-nowhere
on:
appveyor_repo_tag: true