Skip to content

Commit 830103a

Browse files
Merge remote-tracking branch 'remotes/from/ce/release/1.21.x' into release/1.21.x
2 parents 19ef213 + 25d8400 commit 830103a

File tree

2 files changed

+19
-10
lines changed

2 files changed

+19
-10
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -587,11 +587,11 @@ jobs:
587587
text:
588588
type: mrkdwn
589589
text: |
590-
${{ needs.setup.result != 'failure' && ':white_check_mark:' || ':x:' }} Setup
591-
${{ needs.ui.result != 'failure' && ':white_check_mark:' || ':x:' }} Build UI
592-
${{ (needs.artifacts-ent.result != 'failure' && needs.artifacts-ce.result != 'failure') && ':white_check_mark:' || ':x:' }} Build Vault Artifacts
593-
${{ needs.test.result != 'failure' && ':white_check_mark:' || ':x:' }} Enos package test scenarios
594-
${{ needs.test-containers.result != 'failure' && ':white_check_mark:' || ':x:' }} Enos container test scenarios
590+
${{ needs.setup.result == 'failure' && ':x: Setup' || '' }}
591+
${{ needs.ui.result == 'failure' && ':x: Build UI' || '' }}
592+
${{ needs.test.result == 'failure' && ':x: Enos package test scenarios' || '' }}
593+
${{ needs.test-containers.result == 'failure' && ':x: Enos container test scenarios' || '' }}
594+
${{ (needs.artifacts-ent.result == 'failure' || needs.artifacts-ce.result == 'failure') && ':x: Build Vault Artifacts' || '' }}
595595
accessory:
596596
type: button
597597
text:

.github/workflows/ci.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,8 @@ jobs:
437437
always() &&
438438
needs.setup.outputs.workflow-trigger == 'push' &&
439439
(
440+
needs.setup.result == 'failure' ||
441+
needs.test-autopilot-upgrade.result == 'failure' ||
440442
needs.test-go.result == 'failure' ||
441443
needs.test-go-race.result == 'failure' ||
442444
needs.test-go-race.outputs.data-race-result == 'failure' ||
@@ -463,11 +465,18 @@ jobs:
463465
text:
464466
type: mrkdwn
465467
text: |
466-
${{ needs.test-go.result != 'failure' && ':white_check_mark:' || ':x:' }} Go tests
467-
${{ needs.test-go-race.result != 'failure' && ':white_check_mark:' || ':x:' }} Go race tests
468-
${{ needs.test-go-race.outputs.data-race-result != 'success' && ':x: Data race detected' || ':white_check_mark: No race detected' }}
469-
${{ needs.test-go-testonly.result != 'failure' && ':white_check_mark:' || ':x:' }} Go testonly tests
470-
${{ needs.test-ui.result != 'failure' && ':white_check_mark:' || ':x:' }} UI tests
468+
${{ needs.setup.result == 'failure' && ':x: Setup' || '' }}
469+
${{ needs.test-autopilot-upgrade.result == 'failure' && ':x: Autopilot upgrade' || '' }}
470+
${{ needs.test-go.result == 'failure' && ':x: Go tests' || '' }}
471+
${{ needs.test-go-testonly.result == 'failure' && ':x: Go testonly tests' || '' }}
472+
${{ needs.test-go-fips.result == 'failure' && ':x: Go FIPS tests' || '' }}
473+
${{ needs.test-ui.result == 'failure' && ':x: UI tests' || '' }}
474+
${{ needs.test-go-race.result != 'skipped' &&
475+
(
476+
((needs.test-go-race.outputs.data-race-result != '' && needs.test-go-race.outputs.data-race-result != 'success') && ':x: Go race tests (Data race(s) detected)') ||
477+
(needs.test-go-race.result == 'failure' && ':x: Go race tests' || '')
478+
) || ''
479+
}}
471480
accessory:
472481
type: button
473482
text:

0 commit comments

Comments
 (0)