Skip to content

Commit

Permalink
Use matrix.entry for the Ubuntu workflow (#7205)
Browse files Browse the repository at this point in the history
This seems easier to understand.

Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
  • Loading branch information
k0kubun and nobu committed Jan 31, 2023
1 parent 5b67c15 commit 6d10779
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 6d10779

Please sign in to comment.