File tree Expand file tree Collapse file tree 2 files changed +41
-1
lines changed
Expand file tree Collapse file tree 2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 1+ name : JRuby CI
2+
3+ on : [push, pull_request]
4+
5+ env :
6+ JAVA_OPTS : ' -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -Xms60M -Xmx1G -XX:InitialCodeCacheSize=40M -XX:ReservedCodeCacheSize=120M'
7+
8+ permissions :
9+ contents : read
10+
11+ jobs :
12+
13+ rake-test :
14+ runs-on : windows-latest
15+
16+ strategy :
17+ matrix :
18+ java-version : ['21', '25']
19+ fail-fast : false
20+
21+ name : windows verification (Java ${{ matrix.java-version }})
22+
23+ steps :
24+ - name : checkout
25+ uses : actions/checkout@v3
26+ - name : set up java ${{ matrix.java-version }}
27+ uses : actions/setup-java@v3
28+ with :
29+ distribution : ' zulu'
30+ java-version : ${{ matrix.java-version }}
31+ cache : ' maven'
32+ - name : bootstrap
33+ run : mvn -ntp -Pbootstrap clean package
34+ - name : bundle install
35+ run : bin/jruby --dev -S bundle install
36+ - name : jruby rails_runner
37+ shell : cmd
38+ run : |
39+ set PATH=%CD%\bin;%PATH%
40+ jruby tool/rails_runner
Original file line number Diff line number Diff line change @@ -41,6 +41,6 @@ Dir.chdir(rails_app) do
4141 jruby_command ( "rails" , "generate scaffold person name:string" )
4242 jruby_command ( "rake" , "db:migrate" )
4343# jruby_command("rails", "webpacker:install")
44- jruby_command ( "rails" , "server" )
44+ # jruby_command("rails", "server")
4545end
4646puts "Done"
You can’t perform that action at this time.
0 commit comments