File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ jobs:
1111 strategy :
1212 fail-fast : false
1313 matrix :
14- os : [ ubuntu-latest ]
14+ os : [ ubuntu-latest, windows-latest, macos-latest ]
1515 ruby : [ jruby-9.4.12.0, jruby-head ]
1616
17- runs-on : ubuntu-latest
17+ runs-on : ${{ matrix.os }}
1818
1919 steps :
2020 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ include $(SUB_IMPLMK)
100100# Pick conf based on OS. for mingw64, must manually override for now.
101101ifeq ($(OS ) ,Windows_NT)
102102CC =gcc
103- CONF =mingw
103+ CONF =mingw64
104104else
105105CONF =unix
106106endif
Original file line number Diff line number Diff line change 11require 'tmpdir'
2+ require 'rbconfig'
23require File . expand_path ( '../spec_helper.rb' , __FILE__ )
34load File . expand_path ( '../../lib/jruby-launcher.rb' , __FILE__ )
45
5- describe "JRuby native launcher" , if : /Windows / . match? ( ENV_JAVA [ 'os.name '] ) do
6+ describe "JRuby native launcher" , if : /mswin / . match? ( RbConfig :: CONFIG [ 'host_os '] ) do
67 it "should run org.jruby.Main" do
78 jruby_launcher_args ( "" ) . last . should == "org/jruby/Main"
89 end
You can’t perform that action at this time.
0 commit comments