-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.appveyor.yml
43 lines (36 loc) · 1.02 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: build-{build}-{branch}
image:
- Visual Studio 2015
- Visual Studio 2017
environment:
matrix:
# Some native extensions do not compile on Appveyor's ruby 2.0
# - RUBY_VERSION: 200
# - RUBY_VERSION: 200-x64
- RUBY_VERSION: 21
- RUBY_VERSION: 21-x64
- RUBY_VERSION: 22
- RUBY_VERSION: 22-x64
- RUBY_VERSION: 23
- RUBY_VERSION: 23-x64
install:
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
before_build:
build_script:
- set installed=1
- set gem_sanity=1
- "\"C:\\Program Files\\Git\\bin\\bash.exe\" tools\\travis-install.sh"
- "\"C:\\Program Files\\Git\\bin\\bash.exe\" tools\\travis-run.sh"
- set installed=0
- set gem_sanity=0
- set unit_test=1
- "\"C:\\Program Files\\Git\\bin\\bash.exe\" tools\\travis-install.sh"
- "\"C:\\Program Files\\Git\\bin\\bash.exe\" tools\\travis-run.sh"
skip_commits:
message: /\[ci skip\]/
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: true