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
|
---
image: Visual Studio 2019
branches:
only:
- master
skip_branch_with_pr: true
clone_depth: 1
cache:
- vendor/bundle
- ports/archives
install:
- SET PATH=C:\ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem --version
- gem install bundler --conservative
- bundler --version
- bundle config --local path vendor/bundle
- bundle install
build: off
test_script:
- bundle exec rake -rdevkit compile test
environment:
matrix:
- ruby_version: "33"
- ruby_version: "32"
- ruby_version: "31"
- ruby_version: "30"
|