Skip to content

Commit dc59c99

Browse files
committed
Remove the Bash launcher for JRuby on Windows, always use jruby.exe
* The Bash launcher causes warnings, see ruby/setup-ruby#13 (comment)
1 parent ba5351f commit dc59c99

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
asset_content_type: application/gzip
6666

6767
buildJRubyWindows:
68-
if: false
68+
if: true
6969
strategy:
7070
fail-fast: false
7171
matrix:
@@ -92,6 +92,8 @@ jobs:
9292
mkdir ~/.rubies
9393
tar xf jruby-dist-${{ matrix.jruby-version }}-bin.tar.gz -C ~/.rubies
9494
cd ~/.rubies/${{ matrix.ruby }}/bin
95+
# Remove the Bash launcher, always use jruby.exe
96+
rm jruby
9597
echo -en "@ECHO OFF\r\n@\"%~dp0jruby.exe\" %*\r\n" > ruby.bat
9698
- name: Install Bundler if needed
9799
shell: bash
@@ -187,7 +189,7 @@ jobs:
187189
asset_content_type: application/gzip
188190

189191
buildRubinius:
190-
if: true
192+
if: false
191193
strategy:
192194
fail-fast: false
193195
matrix:

0 commit comments

Comments
 (0)