@@ -2,12 +2,12 @@ name: Ubuntu
22on :
33 push :
44 paths-ignore :
5- - ' doc/**'
6- - ' **/man/*'
7- - ' **.md'
8- - ' **.rdoc'
9- - ' **/.document'
10- - ' .*.yml'
5+ - " doc/**"
6+ - " **/man/*"
7+ - " **.md"
8+ - " **.rdoc"
9+ - " **/.document"
10+ - " .*.yml"
1111 pull_request :
1212 # Do not use paths-ignore for required status checks
1313 # https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks
@@ -26,16 +26,16 @@ jobs:
2626 matrix :
2727 include :
2828 - test_task : check
29- configure : ' cppflags=-DVM_CHECK_MODE'
29+ configure : " cppflags=-DVM_CHECK_MODE"
3030 - test_task : check
3131 arch : i686
3232 - test_task : check
33- configure : ' --disable-yjit'
33+ configure : " --disable-yjit"
3434 - test_task : check
35- configure : ' --enable-shared --enable-load-relative'
35+ configure : " --enable-shared --enable-load-relative"
3636 - test_task : check
3737 modular_gc : true
38- configure : ' --with-modular-gc=/home/runner/ruby_gc'
38+ configure : " --with-modular-gc=/home/runner/ruby_gc"
3939 - test_task : test-bundler-parallel
4040 timeout : 50
4141 - test_task : test-bundled-gems
7373
7474 - uses : ruby/setup-ruby@a6e6f86333f0a2523ece813039b8b4be04560854 # v1.190.0
7575 with :
76- ruby-version : ' 3.0'
76+ ruby-version : " 3.0"
7777 bundler : none
7878
7979 - uses : ./.github/actions/setup/directories
@@ -131,6 +131,7 @@ jobs:
131131 os : ${{ matrix.os || 'ubuntu-22.04' }}
132132 test-opts : ${{ matrix.configure }}
133133 launchable-token : ${{ secrets.LAUNCHABLE_TOKEN }}
134+ launchable-url : ${{ secrets.LAUNCHABLE_BASE_URL }}
134135 builddir : build
135136 srcdir : src
136137 continue-on-error : true
@@ -142,16 +143,16 @@ jobs:
142143 ${{ !contains(matrix.test_task, 'bundle') && 'RUBYOPT=-w' || '' }}
143144 timeout-minutes : ${{ matrix.timeout || 40 }}
144145 env :
145- RUBY_TESTOPTS : ' -q --tty=no'
146- TEST_BUNDLED_GEMS_ALLOW_FAILURES : ' typeprof'
147- PRECHECK_BUNDLED_GEMS : ' no '
146+ RUBY_TESTOPTS : " -q --tty=no"
147+ TEST_BUNDLED_GEMS_ALLOW_FAILURES : " typeprof"
148+ PRECHECK_BUNDLED_GEMS : " no "
148149
149150 - name : make skipped tests
150151 run : |
151152 $SETARCH make -s test-all TESTS="${TESTS//-n!\//-n/}"
152153 env :
153- GNUMAKEFLAGS : ' '
154- RUBY_TESTOPTS : ' -v --tty=no'
154+ GNUMAKEFLAGS : " "
155+ RUBY_TESTOPTS : " -v --tty=no"
155156 if : ${{ matrix.test_task == 'check' && matrix.skipped_tests }}
156157 continue-on-error : ${{ matrix.continue-on-skipped_tests || false }}
157158
0 commit comments