File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed
Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -26,18 +26,12 @@ jobs:
2626 make :
2727 strategy :
2828 matrix :
29- # main variables included in the job name
30- test_task : [check]
31- configure : [cppflags=-DRUBY_DEBUG] # default to use more assertions
32- arch : ['']
33- # specify all jobs with `include` to avoid testing duplicated things
34- include :
29+ entry :
3530 - test_task : check
3631 - test_task : check
3732 arch : i686
38- configure : ' ' # test without -DRUBY_DEBUG as well
3933 - test_task : check
40- configure : " --enable-shared --enable-load-relative"
34+ configure : ' --enable-shared --enable-load-relative'
4135 - test_task : test-all TESTS=--repeat-count=2
4236 - test_task : test-bundler-parallel
4337 - test_task : test-bundled-gems
8983 - name : Run configure
9084 env :
9185 arch : ${{matrix.arch}}
86+ configure : ${{matrix.configure}}
9287 run : >-
93- $SETARCH ../src/configure -C --disable-install-doc ${{ matrix. configure } }
88+ $SETARCH ../src/configure -C --disable-install-doc ${configure:-cppflags=-DRUBY_DEBUG }
9489 ${arch:+--target=$arch-$OSTYPE --host=$arch-$OSTYPE}
9590 - run : $SETARCH make incs
9691 - run : $SETARCH make prepare-gems
You can’t perform that action at this time.
0 commit comments