summaryrefslogtreecommitdiff
path: root/.github/workflows/ubuntu.yml
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2024-03-21 16:44:56 -0700
committerGitHub <noreply@github.com>2024-03-21 16:44:56 -0700
commit49eddad77efdc1d77fc035989591cbe56fc66a1e (patch)
tree9d6af677dd3598c01194a1cb824fdb0fe95be5ce /.github/workflows/ubuntu.yml
parent75d9019e6f7bc6ed5bc48dbffdde22b4bc58fac5 (diff)
Declare all jobs in matrix.include (#10327)
Declare all jobs using matrix.include
Diffstat (limited to '.github/workflows/ubuntu.yml')
-rw-r--r--.github/workflows/ubuntu.yml7
1 files changed, 2 insertions, 5 deletions
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'