summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 023ea096bf62c09b27614333492971d94fef26fe (plain)
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: "master-{build}"

os: Visual Studio 2017
platform:
  - x64

cache:
  - vendor/bundle

environment:
  matrix:
    - ruby_version: "24-x64"
    - ruby_version: "25-x64"
    - ruby_version: "26-x64"

clone_depth: 1
skip_tags: true
skip_branch_with_pr: true
branches:
  only:
    - master

install:
  - systeminfo
  - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
  - echo %PATH%
  - appveyor DownloadFile http://curl.haxx.se/ca/cacert.pem -FileName C:\cacert.pem
  - set SSL_CERT_FILE=C:\cacert.pem
  - SET BUNDLE_WITHOUT=server:docgen:maintenance:pry:travis:integration:ci
  - bundle config --local path vendor/bundle # use the cache we define above
  - bundle install || bundle install || bundle install

build: off

before_test:
  - ruby --version
  - gem --version
  - bundler --version
  - bundle env

test_script:
  - SET SPEC_OPTS=--format progress
  - bundle exec rake