File tree Expand file tree Collapse file tree 2 files changed +20
-8
lines changed Expand file tree Collapse file tree 2 files changed +20
-8
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ matrix:
22
22
script : bundle exec rake beaker
23
23
services : docker
24
24
sudo : required
25
- - rvm : 2.3.1
25
+ - rvm : 2.4.0
26
26
bundler_args : --without system_tests
27
- env : PUPPET_GEM_VERSION="~> 4 .0"
28
- - rvm : 2.1.7
27
+ env : PUPPET_GEM_VERSION="~> 5 .0"
28
+ - rvm : 2.1.9
29
29
bundler_args : --without system_tests
30
30
env : PUPPET_GEM_VERSION="~> 4.0"
31
31
notifications :
Original file line number Diff line number Diff line change @@ -14,16 +14,28 @@ environment:
14
14
RUBY_VER : 21
15
15
- PUPPET_GEM_VERSION : ~> 4.0
16
16
RUBY_VER : 21-x64
17
- - PUPPET_GEM_VERSION : ~> 4 .0
18
- RUBY_VER : 23
19
- - PUPPET_GEM_VERSION : ~> 4 .0
20
- RUBY_VER : 23 -x64
21
- - PUPPET_GEM_VERSION : 4.2.3
17
+ - PUPPET_GEM_VERSION : ~> 5 .0
18
+ RUBY_VER : 24
19
+ - PUPPET_GEM_VERSION : ~> 5 .0
20
+ RUBY_VER : 24 -x64
21
+ - PUPPET_GEM_VERSION : 4.7.1
22
22
RUBY_VER : 21-x64
23
23
matrix :
24
24
fast_finish : true
25
25
install :
26
26
- SET PATH=C:\Ruby%RUBY_VER%\bin;%PATH%
27
+ - ps : |
28
+ # AppVeyor appears to have OpenSSL headers available already
29
+ # which msys2 would normally install with:
30
+ # pacman -S mingw-w64-x86_64-openssl --noconfirm
31
+ #
32
+ if ( $(ruby --version) -match "^ruby\s+2\.4" ) {
33
+ Write-Output "Building OpenSSL gem ~> 2.0.4 to fix Ruby 2.4 / AppVeyor issue"
34
+ gem install openssl --version '~> 2.0.4' --no-ri --no-rdoc
35
+ }
36
+
37
+ gem list openssl
38
+ ruby -ropenssl -e 'puts \"OpenSSL Version - #{OpenSSL::OPENSSL_VERSION}\"; puts \"OpenSSL Library Version - #{OpenSSL::OPENSSL_LIBRARY_VERSION}\"'
27
39
- bundle install --jobs 4 --retry 2 --without system_tests
28
40
- type Gemfile.lock
29
41
build : off
You can’t perform that action at this time.
0 commit comments