diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2024-03-21 16:44:56 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-21 16:44:56 -0700 |
| commit | 49eddad77efdc1d77fc035989591cbe56fc66a1e (patch) | |
| tree | 9d6af677dd3598c01194a1cb824fdb0fe95be5ce | |
| parent | 75d9019e6f7bc6ed5bc48dbffdde22b4bc58fac5 (diff) | |
Declare all jobs in matrix.include (#10327)
Declare all jobs using matrix.include
| -rw-r--r-- | .github/workflows/macos.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/ubuntu.yml | 7 |
2 files changed, 3 insertions, 8 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 8fa946fb82..c5d88e30d7 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -24,10 +24,8 @@ jobs: make: strategy: matrix: - test_task: ['check'] - test_opts: [''] - os: [''] include: + - test_task: check - test_task: test-all test_opts: --repeat-count=2 - test_task: test-bundler-parallel diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 95f7e97d18..62b55845b9 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -24,13 +24,10 @@ jobs: make: strategy: matrix: - test_task: [check] - arch: [''] - configure: ['cppflags=-DVM_CHECK_MODE'] - os: [''] - # specifying other jobs with `include` to avoid redundant tests include: - test_task: check + configure: 'cppflags=-DVM_CHECK_MODE' + - test_task: check arch: i686 - test_task: check configure: '--disable-yjit' |
