mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Fix build workflow (#3041)
This commit is contained in:
parent
3522d8b084
commit
1ab7560a86
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@ -555,7 +555,7 @@ jobs:
|
|||||||
owner: 'bitwarden',
|
owner: 'bitwarden',
|
||||||
repo: 'self-host',
|
repo: 'self-host',
|
||||||
workflow_id: 'build-self-host.yml',
|
workflow_id: 'build-self-host.yml',
|
||||||
ref: 'DEVOPS-1204-Migrate_Build_pipeline_to_self-host_repo',
|
ref: 'master',
|
||||||
inputs: {
|
inputs: {
|
||||||
server_branch: '${{ github.ref }}'
|
server_branch: '${{ github.ref }}'
|
||||||
}
|
}
|
||||||
@ -573,6 +573,7 @@ jobs:
|
|||||||
- build-docker
|
- build-docker
|
||||||
- upload
|
- upload
|
||||||
- build-mssqlmigratorutility
|
- build-mssqlmigratorutility
|
||||||
|
- trigger-self-host-build
|
||||||
steps:
|
steps:
|
||||||
- name: Check if any job failed
|
- name: Check if any job failed
|
||||||
if: |
|
if: |
|
||||||
@ -587,6 +588,7 @@ jobs:
|
|||||||
BUILD_DOCKER_STATUS: ${{ needs.build-docker.result }}
|
BUILD_DOCKER_STATUS: ${{ needs.build-docker.result }}
|
||||||
UPLOAD_STATUS: ${{ needs.upload.result }}
|
UPLOAD_STATUS: ${{ needs.upload.result }}
|
||||||
BUILD_MSSQLMIGRATORUTILITY_STATUS: ${{ needs.build-mssqlmigratorutility.result }}
|
BUILD_MSSQLMIGRATORUTILITY_STATUS: ${{ needs.build-mssqlmigratorutility.result }}
|
||||||
|
TRIGGER_SELF_HOST_BUILD_STATUS: ${{ needs.trigger-self-host-build.result }}
|
||||||
run: |
|
run: |
|
||||||
if [ "$CLOC_STATUS" = "failure" ]; then
|
if [ "$CLOC_STATUS" = "failure" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
@ -602,6 +604,8 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
elif [ "$BUILD_MSSQLMIGRATORUTILITY_STATUS" = "failure" ]; then
|
elif [ "$BUILD_MSSQLMIGRATORUTILITY_STATUS" = "failure" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
|
elif [ "$TRIGGER_SELF_HOST_BUILD_STATUS" = "failure" ]; then
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Login to Azure - CI subscription
|
- name: Login to Azure - CI subscription
|
||||||
|
Loading…
x
Reference in New Issue
Block a user