blob: 4b497615090e7e396b885b5cff610e144e4d02fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
version: '{build}'
skip_tags: true
clone_depth: 2
environment:
matrix:
# see https://www.appveyor.com/docs/build-environment/#ruby for list of installed Ruby runtimes
- ruby_version: '26'
init:
- set PATH=C:\Ruby%ruby_version%\bin;%PATH:C:\Ruby193\bin;=%
- echo %PATH%
- ruby -v
- gem -v
- bundle version
install:
- bundle --jobs=3 --path=.bundle\gems
build_script:
- bundle exec rake build
test_script:
- bundle exec rake spec
|