forked from nabijaczleweli/openalias.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
43 lines (34 loc) · 1.07 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
version: 0.2.0-{build}
skip_tags: false
platform: x64
configuration: Release
clone_folder: C:\openalias.rs
install:
- set PATH=C:\msys64\mingw64\bin;C:\msys64\usr\bin;%PATH%;C:\Users\appveyor\.cargo\bin
- bash -lc "pacman --needed --noconfirm -Sy pacman-mirrors"
- bash -lc "pacman --noconfirm -Sy"
- bash -lc "pacman --noconfirm -S mingw-w64-x86_64-toolchain"
-
- curl -SL https://win.rustup.rs/ -oC:\rustup-init.exe
- C:\rustup-init.exe -y --default-host="x86_64-pc-windows-gnu"
build: off
build_script:
- git submodule update --init --recursive
- cargo build --release
- cp target\release\openalias.exe openalias-v0.2.0.exe
- strip --strip-all --remove-section=.comment --remove-section=.note openalias-v0.2.0.exe
test: off
artifacts:
- path: openalias-v0.2.0.exe
deploy:
provider: GitHub
artifact: openalias-v0.2.0.exe
auth_token:
secure: 3Q/17mSjjqWglHuSEzAOFsZA5bNU5t/18/+msPL6PwmI9WZwS7FsVu0yxjgwFM/X
on:
appveyor_repo_tag: true
notifications:
- provider: Email
to:
on_build_status_changed: true