Skip to content

Commit

Permalink
Let's build on multiple Windows versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lacostej committed Apr 14, 2022
1 parent e556283 commit 4b24755
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,21 @@ version: "{build}"
init:
- git config --global core.autocrlf false

# cloning the repository happens here
cache:
- vendor/bundle

environment:
matrix:
- RUBY_VERSION: 24
- RUBY_VERSION: 25
- RUBY_VERSION: 26
- RUBY_VERSION: 27
- RUBY_VERSION: 30
- RUBY_VERSION: 31

install:
- set PATH=C:\Ruby24-x64\bin;%PATH%
- set PATH=C:\Ruby%RUBY_VERSION%-x64\bin;%PATH%
- bundle config --local path vendor/bundle
- bundle install

environment:
Expand All @@ -17,5 +28,10 @@ environment:

build: off

before_test:
- ruby -v
- gem -v
- bundle -v

test_script:
- bundle exec rake

0 comments on commit 4b24755

Please sign in to comment.