Skip to content

Commit

Permalink
Update Appveyor configs:
Browse files Browse the repository at this point in the history
- Update build image to Visual Studio 2019 (Windows Server 2019).
- Use x64 builds
- Disable doc generation to speed up gem update/install.
  • Loading branch information
kapoorlakshya committed May 22, 2020
1 parent e559e0a commit a50315e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,30 @@ build: off
cache:
- vendor/bundle
image:
- Visual Studio 2017
- Visual Studio 2019
environment:
matrix:
- RUBY_VERSION: Ruby24
- RUBY_VERSION: Ruby24-x64
RUBY_BIN: ruby
RAKE_TASK: spec
RAKE_TASK: rubocop
SCRIPT_CONTEXT: bundle exec
- RUBY_VERSION: Ruby24
- RUBY_VERSION: Ruby24-x64
RUBY_BIN: ruby
RAKE_TASK: rubocop
RAKE_TASK: spec
SCRIPT_CONTEXT: bundle exec
- RUBY_VERSION: Ruby25
- RUBY_VERSION: Ruby25-x64
RUBY_BIN: ruby
RAKE_TASK: spec
SCRIPT_CONTEXT: bundle exec
- RUBY_VERSION: Ruby26
- RUBY_VERSION: Ruby26-x64
RUBY_BIN: ruby
RAKE_TASK: spec
SCRIPT_CONTEXT: bundle exec
- RUBY_VERSION: jruby-9.2.11.1
RUBY_BIN: jruby
RAKE_TASK: spec
SCRIPT_CONTEXT: jruby -G -S
- RUBY_VERSION: Ruby26
- RUBY_VERSION: Ruby26-x64
RUBY_BIN: ruby
RAKE_TASK: spec
SCRIPT_CONTEXT: bundle exec
Expand All @@ -34,8 +34,8 @@ install:
- ps: if ($env:RUBY_BIN -eq 'jruby') { support\install_jruby.ps1 }
- ps: support\install_msedge.ps1
- set PATH=C:\%RUBY_VERSION%\bin;%PATH%
- '%RUBY_BIN% -S gem update --system'
- '%RUBY_BIN% -S gem install bundler'
- '%RUBY_BIN% -S gem update --system -N'
- '%RUBY_BIN% -S gem install bundler -N'
- '%RUBY_BIN% -S bundle install'
before_test:
- '%RUBY_BIN% -v'
Expand Down

0 comments on commit a50315e

Please sign in to comment.