Use matrix.entry for the Ubuntu workflow (#7205)

This seems easier to understand.

Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
This commit is contained in:
Takashi Kokubun 2023-01-30 22:44:24 -08:00 committed by GitHub
parent 5b67c15cd8
commit 6d1077974f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
Notes: git 2023-01-31 06:44:45 +00:00
Merged-By: k0kubun <takashikkbn@gmail.com>

View File

@ -26,18 +26,12 @@ jobs:
make:
strategy:
matrix:
# main variables included in the job name
test_task: [check]
configure: [cppflags=-DRUBY_DEBUG] # default to use more assertions
arch: ['']
# specify all jobs with `include` to avoid testing duplicated things
include:
entry:
- test_task: check
- test_task: check
arch: i686
configure: '' # test without -DRUBY_DEBUG as well
- test_task: check
configure: "--enable-shared --enable-load-relative"
configure: '--enable-shared --enable-load-relative'
- test_task: test-all TESTS=--repeat-count=2
- test_task: test-bundler-parallel
- test_task: test-bundled-gems
@ -89,8 +83,9 @@ jobs:
- name: Run configure
env:
arch: ${{matrix.arch}}
configure: ${{matrix.configure}}
run: >-
$SETARCH ../src/configure -C --disable-install-doc ${{ matrix.configure }}
$SETARCH ../src/configure -C --disable-install-doc ${configure:-cppflags=-DRUBY_DEBUG}
${arch:+--target=$arch-$OSTYPE --host=$arch-$OSTYPE}
- run: $SETARCH make incs
- run: $SETARCH make prepare-gems