summaryrefslogtreecommitdiff
path: root/.appveyor.yml
blob: 6800efd1dea1a418968cc472dc9aec13a975aa5d (plain) (blame)
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
# AppVeyor automatically skips the build if the commit contains [ci skip] or [skip ci]
version: '{build}'
skip_tags: true
clone_depth: 2
environment:
  matrix:
  # see https://www.appveyor.com/docs/linux-images-software/#ruby for list of installed Ruby runtimes
  - ruby_version: '26'
  - ruby_version: '26-x64'
  - ruby_version: '25'
  - ruby_version: '24'
  - ruby_version: '23'
init:
# Prepend Ruby path from matrix while removing original Ruby entry (C:\Ruby193\bin)
- set PATH=C:\Ruby%ruby_version%\bin;%PATH:C:\Ruby193\bin;=%
- echo %PATH%
- ruby -v
- gem -v
- bundler --version
install:
- bundle --jobs=3 --path=.bundle\gems
build_script:
- bundle exec rake build
test_script:
- bundle exec rake test:all
artifacts:
- path: pkg\*.gem