forked from rusoto/rusoto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
36 lines (32 loc) · 965 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
# from https://github.com/japaric/rust-everywhere and https://github.com/yupferris/rustendo64/blob/master/appveyor.yml
os: Visual Studio 2015
environment:
global:
# This will be used as part of the zipfile name
PROJECT_NAME: rusoto
matrix:
- TARGET: x86_64-pc-windows-msvc
CHANNEL: stable
- TARGET: x86_64-pc-windows-msvc
CHANNEL: beta
cache:
- 'C:\Users\appveyor\.cargo'
# 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;c:\cygwin\bin
- rustc -Vv
- cargo -V
- git submodule update --init --recursive
build: off
test_script:
- cargo update
- cargo test --all --lib -v
- cd integration_tests
- cargo check --tests --features "all"
- cd ..
branches:
only:
- master