Skip to content

Commit d002e5f

Browse files
committed
skippable regression
1 parent e0ab89e commit d002e5f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release_branches.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -486,8 +486,8 @@ jobs:
486486
##################################### REGRESSION TESTS ######################################
487487
#############################################################################################
488488
RegressionTestsRelease:
489-
needs: [BuilderDebRelease]
490-
if: ${{ !failure() && !cancelled() }}
489+
needs: [RunConfig, BuilderDebRelease]
490+
if: ${{ !failure() && !cancelled() && !contains(fromJson(needs.RunConfig.outputs.data).ci_settings.exclude_keywords, 'regression')}}
491491
uses: ./.github/workflows/regression.yml
492492
secrets: inherit
493493
with:
@@ -497,8 +497,8 @@ jobs:
497497
build_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
498498
timeout_minutes: 300
499499
RegressionTestsAarch64:
500-
needs: [BuilderDebAarch64]
501-
if: ${{ !failure() && !cancelled() }}
500+
needs: [RunConfig, BuilderDebAarch64]
501+
if: ${{ !failure() && !cancelled() && !contains(fromJson(needs.RunConfig.outputs.data).ci_settings.exclude_keywords, 'regression') && !contains(fromJson(needs.RunConfig.outputs.data).ci_settings.exclude_keywords, 'aarch64')}}
502502
uses: ./.github/workflows/regression.yml
503503
secrets: inherit
504504
with:

0 commit comments

Comments
 (0)