File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 70
70
jobs :
71
71
bazel :
72
72
name : ${{ inputs.name }}
73
- runs-on : ${{ format('{0}-latest', inputs.os) }}
73
+ runs-on : ${{ contains(inputs.os, '-') && inputs.os || format('{0}-latest', inputs.os) }}
74
74
env :
75
75
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
76
76
SEL_M2_USER : ${{ secrets.SEL_M2_USER }}
Original file line number Diff line number Diff line change 58
58
ruby-version : ${{ matrix.ruby-version }}
59
59
run : >
60
60
bazel test
61
+ --keep_going
61
62
--build_tests_only
62
63
--test_size_filters small
63
64
//rb/spec/...
86
87
os : ${{ matrix.os }}
87
88
run : >
88
89
bazel test
90
+ --keep_going
89
91
--build_tests_only
90
92
--flaky_test_attempts 3
91
93
--local_test_jobs 1
@@ -112,6 +114,7 @@ jobs:
112
114
java-version : 11
113
115
run : >
114
116
bazel test
117
+ --keep_going
115
118
--build_tests_only
116
119
--flaky_test_attempts 3
117
120
--local_test_jobs 1
You can’t perform that action at this time.
0 commit comments