mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 04:04:24 +00:00
Add Selfhost job to Build Web check for failures job (#3614)
This commit is contained in:
4
.github/workflows/build-web.yml
vendored
4
.github/workflows/build-web.yml
vendored
@@ -355,6 +355,7 @@ jobs:
|
||||
- cloc
|
||||
- setup
|
||||
- build-artifacts
|
||||
- build-commercial-selfhost-image
|
||||
- build-qa
|
||||
- crowdin-push
|
||||
steps:
|
||||
@@ -364,6 +365,7 @@ jobs:
|
||||
CLOC_STATUS: ${{ needs.cloc.result }}
|
||||
SETUP_STATUS: ${{ needs.setup.result }}
|
||||
ARTIFACT_STATUS: ${{ needs.build-artifacts.result }}
|
||||
BUILD_SELFHOST_STATUS: ${{ needs.build-commercial-selfhost-image.result }}
|
||||
BUILD_QA_STATUS: ${{ needs.build-qa.result }}
|
||||
CROWDIN_PUSH_STATUS: ${{ needs.crowdin-push.result }}
|
||||
run: |
|
||||
@@ -373,6 +375,8 @@ jobs:
|
||||
exit 1
|
||||
elif [ "$ARTIFACT_STATUS" = "failure" ]; then
|
||||
exit 1
|
||||
elif [ "$BUILD_SELFHOST_STATUS" = "failure" ]; then
|
||||
exit 1
|
||||
elif [ "$BUILD_QA_STATUS" = "failure" ]; then
|
||||
exit 1
|
||||
elif [ "$CROWDIN_PUSH_STATUS" = "failure" ]; then
|
||||
|
||||
Reference in New Issue
Block a user