Skip to content

Commit e13ff4e

Browse files
committed
add Builds_2 dependency for Build_Report
1 parent 9f64e46 commit e13ff4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
Builds_Report:
120120
# run report check for failed builds to indicate the CI error
121121
if: ${{ !cancelled() && needs.RunConfig.result == 'success' && contains(fromJson(needs.RunConfig.outputs.data).jobs_data.jobs_to_do, 'ClickHouse build check') }}
122-
needs: [RunConfig, Builds_1]
122+
needs: [RunConfig, Builds_1, Builds_2]
123123
uses: ./.github/workflows/reusable_test.yml
124124
with:
125125
test_name: ClickHouse build check

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
Builds_Report:
148148
# run report check for failed builds to indicate the CI error
149149
if: ${{ !cancelled() && needs.RunConfig.result == 'success' && contains(fromJson(needs.RunConfig.outputs.data).jobs_data.jobs_to_do, 'ClickHouse build check') }}
150-
needs: [RunConfig, StyleCheck, Builds_1]
150+
needs: [RunConfig, StyleCheck, Builds_1, Builds_2]
151151
uses: ./.github/workflows/reusable_test.yml
152152
with:
153153
test_name: ClickHouse build check

0 commit comments

Comments
 (0)