diff options
| author | Rory OConnell <[email protected]> | 2020-06-29 13:18:05 -0700 |
|---|---|---|
| committer | Rory OConnell <[email protected]> | 2020-06-29 13:18:05 -0700 |
| commit | 6d5652114e2105b1e9d81b353b3c9335ca3b4dd5 (patch) | |
| tree | bcba1429c3652b8c10e2a46c98f2181c0856cfe8 /appveyor.yml | |
| parent | b1017b26513c5773b30b88b0675ab070356fb2a8 (diff) | |
| download | mruby-6d5652114e2105b1e9d81b353b3c9335ca3b4dd5.tar.gz mruby-6d5652114e2105b1e9d81b353b3c9335ca3b4dd5.zip | |
update CI settings for Windows
Diffstat (limited to 'appveyor.yml')
| -rw-r--r-- | appveyor.yml | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/appveyor.yml b/appveyor.yml index e135383e1..876e1edb0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,11 +1,18 @@ version: "{build}" -os: Visual Studio 2017 +os: Visual Studio 2019 shallow_clone: true environment: matrix: + # Visual Studio 2019 64bit + - visualcpp: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat + + # Visual Studio 2019 32bit + - visualcpp: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat + machine: x86 + # Visual Studio 2017 64bit - visualcpp: C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat @@ -25,15 +32,14 @@ environment: - visualcpp: C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat machine: amd64 - init: - call "%visualcpp%" %machine% - # For using Rubyinstaller's Ruby 2.4 64bit - - set PATH=C:\Ruby24-x64\bin;%PATH% + # For using Rubyins4aller's Ruby 2.6 64bit + # 2.6 is the highest supported Ruby version across all historical + # Visual Studio AppVeyor images. Ruby 2.7 is only on the 2019 image. + - set PATH=C:\Ruby26-x64\bin;%PATH% - ruby --version - build_script: - set MRUBY_CONFIG=appveyor_config.rb - - rake -m - - rake -E $stdout.sync=true test + - rake -E "$stdout.sync=true" -m -j4 test |
