forked from asciidoctor/asciidoctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
29 lines (29 loc) · 808 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
# AppVeyor automatically skips the build if the commit contains [ci skip] or [skip ci]
version: '{build}'
skip_tags: true
clone_depth: 2
environment:
PYGMENTS_VERSION: '~> 1.2.0'
SOURCE_DATE_EPOCH: '1521504000'
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