Skip to content

Commit

Permalink
Update runner and matrix
Browse files Browse the repository at this point in the history
Signed-off-by: Viet Nguyen Duc <[email protected]>
  • Loading branch information
VietND96 committed Feb 19, 2025
1 parent cc5f8c3 commit e40168e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ on:
jobs:
bazel:
name: ${{ inputs.name }}
runs-on: ${{ format('{0}-latest', inputs.os) }}
runs-on: ${{ contains(inputs.os, '-') && inputs.os || format('{0}-latest', inputs.os) }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SEL_M2_USER: ${{ secrets.SEL_M2_USER }}
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ jobs:
ruby-version: ${{ matrix.ruby-version }}
run: >
bazel test
--keep_going
--nodiscard_analysis_cache
--build_tests_only
--test_size_filters small
//rb/spec/...
Expand Down Expand Up @@ -86,6 +88,8 @@ jobs:
os: ${{ matrix.os }}
run: >
bazel test
--keep_going
--nodiscard_analysis_cache
--build_tests_only
--flaky_test_attempts 3
--local_test_jobs 1
Expand All @@ -112,6 +116,8 @@ jobs:
java-version: 11
run: >
bazel test
--keep_going
--nodiscard_analysis_cache
--build_tests_only
--flaky_test_attempts 3
--local_test_jobs 1
Expand Down

0 comments on commit e40168e

Please sign in to comment.