File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 65
65
asset_content_type : application/gzip
66
66
67
67
buildJRubyWindows :
68
- if : false
68
+ if : true
69
69
strategy :
70
70
fail-fast : false
71
71
matrix :
92
92
mkdir ~/.rubies
93
93
tar xf jruby-dist-${{ matrix.jruby-version }}-bin.tar.gz -C ~/.rubies
94
94
cd ~/.rubies/${{ matrix.ruby }}/bin
95
+ # Remove the Bash launcher, always use jruby.exe
96
+ rm jruby
95
97
echo -en "@ECHO OFF\r\n@\"%~dp0jruby.exe\" %*\r\n" > ruby.bat
96
98
- name : Install Bundler if needed
97
99
shell : bash
@@ -108,6 +110,16 @@ jobs:
108
110
- name : Bundler version
109
111
run : ~/.rubies/${{ matrix.ruby }}/bin/ruby -S bundle --version
110
112
113
+ - name : Basic test (Bash)
114
+ run : ~/.rubies/${{ matrix.ruby }}/bin/jruby --version
115
+ shell : bash
116
+ - name : OpenSSL test (Bash)
117
+ run : ~/.rubies/${{ matrix.ruby }}/bin/jruby -ropen-uri -e 'puts open(%{https://rubygems.org/}) { |f| f.read(1024) }'
118
+ shell : bash
119
+ - name : Bundler version (Bash)
120
+ run : ~/.rubies/${{ matrix.ruby }}/bin/jruby -S bundle --version
121
+ shell : bash
122
+
111
123
- name : Create archive
112
124
run : tar czf ${{ matrix.ruby }}-${{ matrix.os }}.tar.gz -C ~/.rubies ${{ matrix.ruby }}
113
125
shell : bash
@@ -187,7 +199,7 @@ jobs:
187
199
asset_content_type : application/gzip
188
200
189
201
buildRubinius :
190
- if : true
202
+ if : false
191
203
strategy :
192
204
fail-fast : false
193
205
matrix :
You can’t perform that action at this time.
0 commit comments