-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
40 lines (34 loc) · 876 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
# platform:
# - x86
# - x64
image: Ubuntu2004
install:
# - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
# - set PATH=C:\Ruby%ruby_version%\bin;C:\Program Files\7-Zip;C:\Program Files\AppVeyor\BuildAgent;C:\Program Files\Git\cmd;C:\Windows\system32;C:\Program Files;C:\Windows
- ruby --version
- gem --version
- git --version
build: off
cache:
- vendor/bundle
test_script:
- gem install bundler
- bundle config --local path vendor/bundle
- bundle install --jobs=9
- bundle exec rake test
environment:
matrix:
- ruby_version: "26"
# - ruby_version: "27"
matrix:
fast_finish: true
allow_failures:
- ruby_version: "26"
# - ruby_version: "27"
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/ad9d237e4e494d7f8b66
method: POST
on_build_success: true
on_build_failure: true
on_build_status_changed: true