forked from JoshCheek/seeing_is_believing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (26 loc) · 824 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
# Based this off of https://github.com/rspec/rspec-core/blob/22ed96bb3dbb0214dc48d6b8490ade04cdf8eedd/appveyor.yml
# Docs are at https://www.appveyor.com/docs
# I don't really understand what this is for
version: "{build}"
# This will build all PRs targetting matching branches.
# Without this, each PR builds twice -- once for the PR branch HEAD,
# and once for the merge commit that github creates for each mergable PR.
branches:
only:
- master
- /.*-maintenance$/
# Disable normal Windows builds in favor of our test script.
build: off
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem --version
- rake install
test_script:
- bundle exec rake ci
environment:
matrix:
- ruby_version: '25'
- ruby_version: '26'
- ruby_version: '27'
- ruby_version: '30'