Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyCTHsu committed Jan 28, 2025
1 parent 55f4947 commit d17156f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ concurrency:
jobs:
compute_tasks:
runs-on: ubuntu-24.04
name: "${{ matrix.engine.alias }} batching tasks"
name: "${{ matrix.engine.alias }}-batching-tasks"
id: "${{ matrix.engine.alias }}-batching-tasks"
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -56,7 +57,7 @@ jobs:
test-ruby-33:
name: ruby-3.3 batch ${{ matrix.batch }}
needs:
- ruby-33 batching tasks
- ruby-33-batching-tasks
runs-on: ubuntu-24.04
strategy:
fail-fast: false
Expand Down Expand Up @@ -106,7 +107,7 @@ jobs:
test-jruby-94:
name: jruby-9.4 batch ${{ matrix.batch }}
needs:
- jruby-94 batching tasks
- jruby-94-batching-tasks
runs-on: ubuntu-24.04
strategy:
fail-fast: false
Expand Down
5 changes: 3 additions & 2 deletions tasks/github.rake
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ namespace :github do
{
"test-#{runtime.alias}" => {
'name' => "#{runtime.engine}-#{runtime.version} batch ${{ matrix.batch }}",
'needs' => ["#{runtime.alias} batching tasks"],
'needs' => ["#{runtime.alias}-batching-tasks"],
'runs-on' => ubuntu,
'strategy' => {
'fail-fast' => false,
Expand Down Expand Up @@ -116,7 +116,8 @@ namespace :github do

compute_tasks = {
'runs-on' => ubuntu,
'name' => "${{ matrix.engine.alias }} batching tasks",
'name' => "${{ matrix.engine.alias }}-batching-tasks",
'id' => "${{ matrix.engine.alias }}-batching-tasks",
'strategy' => {
'fail-fast' => false,
'matrix' => {
Expand Down

0 comments on commit d17156f

Please sign in to comment.