Skip to content

Commit 7acace2

Browse files
authored
ci: split gha windows shard2 (#15091)
1 parent bfa8cdb commit 7acace2

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

.github/workflows/windows-cmake.yml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -119,17 +119,6 @@ jobs:
119119
servicecontrol
120120
speech
121121
support
122-
video
123-
datacatalog
124-
iam
125-
kms
126-
run
127-
talent
128-
contentwarehouse
129-
dataplex
130-
bigquery
131-
bigquerycontrol
132-
resourcemanager
133122
)
134123
shard3_features=(
135124
securesourcemanager
@@ -215,6 +204,19 @@ jobs:
215204
gkeconnect
216205
gkehub
217206
)
207+
shard5_features=(
208+
video
209+
datacatalog
210+
iam
211+
kms
212+
run
213+
talent
214+
contentwarehouse
215+
dataplex
216+
bigquery
217+
bigquerycontrol
218+
resourcemanager
219+
)
218220
if [[ "${{ matrix.shard }}" == "Core1" ]]; then
219221
features="$(printf ",%s" "${core1_features[@]}")"
220222
echo "features=${features:1}" >> "${GITHUB_OUTPUT}"
@@ -246,6 +248,9 @@ jobs:
246248
elif [[ "${{matrix.shard}}" == "Shard4" ]]; then
247249
features="$(printf ",%s" "${shard4_features[@]}")"
248250
echo "features=${features:1}" >> "${GITHUB_OUTPUT}"
251+
elif [[ "${{matrix.shard}}" == "Shard5" ]]; then
252+
features="$(printf ",%s" "${shard5_features[@]}")"
253+
echo "features=${features:1}" >> "${GITHUB_OUTPUT}"
249254
else
250255
skipped_features=("${core1_features[@]}")
251256
skipped_features+=("${core2_features[@]}")
@@ -258,6 +263,7 @@ jobs:
258263
skipped_features+=("${shard2_features[@]}")
259264
skipped_features+=("${shard3_features[@]}")
260265
skipped_features+=("${shard4_features[@]}")
266+
skipped_features+=("${shard5_features[@]}")
261267
# We use vcpkg in this build, which ships with Protobuf v21.x.
262268
# Both `asset` and `channel` require Protobuf >= 23.x to compile on
263269
# Windows.

0 commit comments

Comments
 (0)