-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.yml
33 lines (31 loc) · 933 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
version: '{build}'
os:
- Visual Studio 2015
environment:
GROONGA_INCLUDE_DIR: C:\Groonga\include
GROONGA_BIN_DIR: C:\Groonga\bin
GROONGA_LIB_DIR: C:\Groonga\lib
matrix:
# TODO:
# - TARGET: x86_64-pc-windows-msvc
# BITS: 64
# RUSTVER: 1.11.0
# GROONGAVER: 6.0.8
- TARGET: x86_64-pc-windows-gnu
BITS: 64
RUSTVER: 1.25.0
GROONGAVER: 6.0.8
install:
- ps: Start-FileDownload "http://packages.groonga.org/windows/groonga/groonga-${Env:GROONGAVER}-x64.exe"
- groonga-%GROONGAVER%-x64.exe /S /D=C:\Groonga
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:RUSTVER}-${env:TARGET}.exe"
- rust-%RUSTVER%-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- SET PATH=%PATH%;C:\MinGW\bin
- rustc -V
- cargo -V
build: false
test_script:
- cargo build
# TODO:
# - cargo test