-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
40 lines (34 loc) · 1007 Bytes
/
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
environment:
RUST_BACKTRACE: 1
matrix:
- RUST: stable
BITS: 64
install:
- SET ARCH=x86_64
- curl -sSf -o rustup-init.exe https://win.rustup.rs
- rustup-init.exe --default-host "%ARCH%-pc-windows-gnu" --default-toolchain %RUST% -y
- SET PATH=C:\msys64\mingw%BITS%\bin;C:\Users\appveyor\.cargo\bin;%PATH%;C:\msys64\usr\bin
- rustc -Vv
- cargo -Vv
- pacman --noconfirm --needed -S mingw-w64-%ARCH%-gtk3 mingw-w64-%ARCH%-clang mingw-w64-%ARCH%-toolchain
build_script:
- rustc --version
- cargo build --release
test: false
deploy:
description: release
provider: GitHub
auth_token:
secure: "cdGt/v2Nj/1qGdf908Tij0R0d6IsfktJaf8EY+XTocWwQ3WBlABZCV5f+ScaOrLO"
draft: true
prerelease: false
on:
APPVEYOR_REPO_TAG: true
artifacts:
- path: target/release/ks-curve-tracer.exe
name: ks-curve-tracer.exe
- path: target/release/ks-curve-tracer-cli.exe
name: ks-curve-tracer-cli.exe
cache:
- C:\msys64\var\cache\pacman\pkg
- C:\Users\appveyor\.cargo