diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2023-10-11 15:55:01 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2023-10-11 15:55:01 -0700 |
| commit | 09a79d39d0838ddcd7ca691bef4cb06d9da761ba (patch) | |
| tree | cb821d6f78a927cfcd013a480853be4328760154 /.github | |
| parent | eca1c2e717e6a16e7abbf591f63d5a223c124023 (diff) | |
Fix the way to specify extra jobs
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/macos.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/ubuntu.yml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 46fdd3e228..7141eb5a83 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -34,12 +34,12 @@ jobs: strategy: matrix: test_task: ['check'] # "test-bundler-parallel", "test-bundled-gems" - # specifying everything else with `include` to avoid redundant tests + os: [macos-12] + configure: ['--enable-shared'] + # specifying other jobs with `include` to avoid redundant tests include: - os: macos-11 configure: '' - - os: macos-12 - configure: '--enable-shared' fail-fast: false env: diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 2709b0d949..e852f6a663 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -36,7 +36,7 @@ jobs: test_task: [check] arch: [''] configure: ['cppflags=-DVM_CHECK_MODE'] - # specifying everything else with `include` to avoid redundant tests + # specifying other jobs with `include` to avoid redundant tests include: - test_task: check arch: i686 |
