mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
621 lines
22 KiB
YAML
621 lines
22 KiB
YAML
name: Build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "rc"
|
|
- "hotfix-rc"
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
workflow_call:
|
|
inputs: {}
|
|
|
|
env:
|
|
_AZ_REGISTRY: "bitwardenprod.azurecr.io"
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Set up .NET
|
|
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4.2.0
|
|
|
|
- name: Verify format
|
|
run: dotnet format --verify-no-changes
|
|
|
|
build-container:
|
|
name: Build container images
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
id-token: write
|
|
security-events: write
|
|
outputs:
|
|
has_secrets: ${{ steps.check-secrets.outputs.has_secrets }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- project_name: Admin
|
|
base_path: ./src
|
|
- project_name: Api
|
|
base_path: ./src
|
|
- project_name: Attachments
|
|
base_path: ./util
|
|
- project_name: Billing
|
|
base_path: ./src
|
|
- project_name: Events
|
|
base_path: ./src
|
|
- project_name: EventsProcessor
|
|
base_path: ./src
|
|
- project_name: Icons
|
|
base_path: ./src
|
|
- project_name: Identity
|
|
base_path: ./src
|
|
- project_name: MsSql
|
|
base_path: ./util
|
|
- project_name: MsSqlMigratorUtility
|
|
base_path: ./util
|
|
- project_name: Nginx
|
|
base_path: ./util
|
|
- project_name: Notifications
|
|
base_path: ./src
|
|
- project_name: Scim
|
|
base_path: ./bitwarden_license/src
|
|
- project_name: Setup
|
|
base_path: ./util
|
|
- project_name: Sso
|
|
base_path: ./bitwarden_license/src
|
|
steps:
|
|
- name: Check secrets
|
|
id: check-secrets
|
|
env:
|
|
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
|
|
run: |
|
|
has_secrets=${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL != '' }}
|
|
echo "has_secrets=$has_secrets" >> $GITHUB_OUTPUT
|
|
|
|
- name: Check out repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Check branch to publish
|
|
env:
|
|
PUBLISH_BRANCHES: "main,rc,hotfix-rc"
|
|
id: publish-branch-check
|
|
run: |
|
|
IFS="," read -a publish_branches <<< $PUBLISH_BRANCHES
|
|
|
|
if [[ " ${publish_branches[*]} " =~ " ${GITHUB_REF:11} " ]]; then
|
|
echo "is_publish_branch=true" >> $GITHUB_ENV
|
|
else
|
|
echo "is_publish_branch=false" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Set SourceRevisionId
|
|
run: |
|
|
GIT_HASH=$(git describe --long --always --dirty --exclude='*' --abbrev=8)
|
|
echo "GitHash: ${GIT_HASH}"
|
|
|
|
sed -i "s/HASH_HERE/$GIT_HASH/" Directory.Build.props
|
|
cat Directory.Build.props
|
|
|
|
########## Set up Docker ##########
|
|
- name: Set up QEMU emulators
|
|
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
|
|
|
|
########## ACRs ##########
|
|
- name: Log in to Azure - production subscription
|
|
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
|
with:
|
|
creds: ${{ secrets.AZURE_PROD_KV_CREDENTIALS }}
|
|
|
|
- name: Log in to ACR - production subscription
|
|
run: az acr login -n bitwardenprod
|
|
|
|
########## Generate image tag and build container image ##########
|
|
- name: Generate container image tag
|
|
id: tag
|
|
run: |
|
|
if [[ "${GITHUB_EVENT_NAME}" == "pull_request" ]]; then
|
|
IMAGE_TAG=$(echo "${GITHUB_HEAD_REF}" | sed "s#/#-#g")
|
|
else
|
|
IMAGE_TAG=$(echo "${GITHUB_REF:11}" | sed "s#/#-#g")
|
|
fi
|
|
|
|
if [[ "$IMAGE_TAG" == "main" ]]; then
|
|
IMAGE_TAG=dev
|
|
fi
|
|
|
|
echo "image_tag=$IMAGE_TAG" >> $GITHUB_OUTPUT
|
|
echo "### :mega: Container Image Tag: $IMAGE_TAG" >> $GITHUB_STEP_SUMMARY
|
|
|
|
- name: Set up project name
|
|
id: setup
|
|
run: |
|
|
PROJECT_NAME=$(echo "${{ matrix.project_name }}" | awk '{print tolower($0)}')
|
|
echo "Matrix name: ${{ matrix.project_name }}"
|
|
echo "PROJECT_NAME: $PROJECT_NAME"
|
|
echo "project_name=$PROJECT_NAME" >> $GITHUB_OUTPUT
|
|
|
|
- name: Generate image tags(s)
|
|
id: image-tags
|
|
env:
|
|
IMAGE_TAG: ${{ steps.tag.outputs.image_tag }}
|
|
PROJECT_NAME: ${{ steps.setup.outputs.project_name }}
|
|
SHA: ${{ github.sha }}
|
|
run: |
|
|
TAGS="${_AZ_REGISTRY}/${PROJECT_NAME}:${IMAGE_TAG}"
|
|
echo "primary_tag=$TAGS" >> $GITHUB_OUTPUT
|
|
if [[ "${IMAGE_TAG}" == "dev" ]]; then
|
|
SHORT_SHA=$(git rev-parse --short ${SHA})
|
|
TAGS=$TAGS",${_AZ_REGISTRY}/${PROJECT_NAME}:dev-${SHORT_SHA}"
|
|
fi
|
|
echo "tags=$TAGS" >> $GITHUB_OUTPUT
|
|
|
|
- name: Generate image full name
|
|
id: cache-name
|
|
env:
|
|
PROJECT_NAME: ${{ steps.setup.outputs.project_name }}
|
|
run: echo "name=${_AZ_REGISTRY}/${PROJECT_NAME}:buildcache" >> $GITHUB_OUTPUT
|
|
|
|
- name: Build Container image
|
|
id: build-container
|
|
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d # v6.12.0
|
|
with:
|
|
cache-from: type=registry,ref=${{ steps.cache-name.outputs.name }}
|
|
cache-to: type=registry,ref=${{ steps.cache-name.outputs.name}},mode=max
|
|
context: .
|
|
file: ${{ matrix.base_path }}/${{ matrix.project_name }}/Dockerfile
|
|
platforms: |
|
|
linux/amd64,
|
|
linux/arm/v7,
|
|
linux/arm64
|
|
push: true
|
|
tags: ${{ steps.image-tags.outputs.tags }}
|
|
|
|
- name: Install Cosign
|
|
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
|
|
uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0
|
|
|
|
- name: Sign image with Cosign
|
|
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
|
|
env:
|
|
DIGEST: ${{ steps.build-container.outputs.digest }}
|
|
TAGS: ${{ steps.image-tags.outputs.tags }}
|
|
run: |
|
|
IFS="," read -a tags <<< "${TAGS}"
|
|
images=""
|
|
for tag in "${tags[@]}"; do
|
|
images+="${tag}@${DIGEST} "
|
|
done
|
|
cosign sign --yes ${images}
|
|
|
|
- name: Scan container image
|
|
id: container-scan
|
|
uses: anchore/scan-action@abae793926ec39a78ab18002bc7fc45bbbd94342 # v6.0.0
|
|
with:
|
|
image: ${{ steps.image-tags.outputs.primary_tag }}
|
|
fail-build: false
|
|
output-format: sarif
|
|
|
|
- name: Upload Grype results to GitHub
|
|
uses: github/codeql-action/upload-sarif@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
|
|
with:
|
|
sarif_file: ${{ steps.container-scan.outputs.sarif }}
|
|
sha: ${{ contains(github.event_name, 'pull_request') && github.event.pull_request.head.sha || github.sha }}
|
|
ref: ${{ contains(github.event_name, 'pull_request') && format('refs/pull/{0}/head', github.event.pull_request.number) || github.ref }}
|
|
|
|
build-stub-swagger:
|
|
name: Build Docker-Stub/Swagger
|
|
runs-on: ubuntu-24.04
|
|
needs: build-container
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Set up .NET
|
|
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4.2.0
|
|
|
|
- name: Log in to Azure - production subscription
|
|
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
|
with:
|
|
creds: ${{ secrets.AZURE_PROD_KV_CREDENTIALS }}
|
|
|
|
- name: Login to PROD ACR
|
|
run: az acr login -n ${_AZ_REGISTRY%.azurecr.io}
|
|
|
|
- name: Restore
|
|
run: dotnet tool restore
|
|
|
|
- name: Make Docker stubs
|
|
if: |
|
|
github.event_name != 'pull_request'
|
|
&& (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc')
|
|
run: |
|
|
# Set proper setup image based on branch
|
|
case "$GITHUB_REF" in
|
|
"refs/heads/main")
|
|
SETUP_IMAGE="$_AZ_REGISTRY/setup:dev"
|
|
;;
|
|
"refs/heads/rc")
|
|
SETUP_IMAGE="$_AZ_REGISTRY/setup:rc"
|
|
;;
|
|
"refs/heads/hotfix-rc")
|
|
SETUP_IMAGE="$_AZ_REGISTRY/setup:hotfix-rc"
|
|
;;
|
|
esac
|
|
|
|
STUB_OUTPUT=$(pwd)/docker-stub
|
|
|
|
# Run setup
|
|
docker run -i --rm --name setup -v $STUB_OUTPUT/US:/bitwarden $SETUP_IMAGE \
|
|
dotnet Setup.dll -stub 1 -install 1 -domain bitwarden.example.com -os lin -cloud-region US
|
|
docker run -i --rm --name setup -v $STUB_OUTPUT/EU:/bitwarden $SETUP_IMAGE \
|
|
dotnet Setup.dll -stub 1 -install 1 -domain bitwarden.example.com -os lin -cloud-region EU
|
|
|
|
sudo chown -R $(whoami):$(whoami) $STUB_OUTPUT
|
|
|
|
# Remove extra directories and files
|
|
rm -rf $STUB_OUTPUT/US/letsencrypt
|
|
rm -rf $STUB_OUTPUT/EU/letsencrypt
|
|
rm $STUB_OUTPUT/US/env/uid.env $STUB_OUTPUT/US/config.yml
|
|
rm $STUB_OUTPUT/EU/env/uid.env $STUB_OUTPUT/EU/config.yml
|
|
|
|
# Create uid environment files
|
|
touch $STUB_OUTPUT/US/env/uid.env
|
|
touch $STUB_OUTPUT/EU/env/uid.env
|
|
|
|
# Zip up the Docker stub files
|
|
cd docker-stub/US; zip -r ../../docker-stub-US.zip *; cd ../..
|
|
cd docker-stub/EU; zip -r ../../docker-stub-EU.zip *; cd ../..
|
|
|
|
- name: Make Docker stub checksums
|
|
if: |
|
|
github.event_name != 'pull_request'
|
|
&& (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc')
|
|
run: |
|
|
sha256sum docker-stub-US.zip > docker-stub-US-sha256.txt
|
|
sha256sum docker-stub-EU.zip > docker-stub-EU-sha256.txt
|
|
|
|
- name: Upload Docker stub US artifact
|
|
if: |
|
|
github.event_name != 'pull_request'
|
|
&& (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc')
|
|
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
|
with:
|
|
name: docker-stub-US.zip
|
|
path: docker-stub-US.zip
|
|
if-no-files-found: error
|
|
|
|
- name: Upload Docker stub EU artifact
|
|
if: |
|
|
github.event_name != 'pull_request'
|
|
&& (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc')
|
|
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
|
with:
|
|
name: docker-stub-EU.zip
|
|
path: docker-stub-EU.zip
|
|
if-no-files-found: error
|
|
|
|
- name: Upload Docker stub US checksum artifact
|
|
if: |
|
|
github.event_name != 'pull_request'
|
|
&& (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc')
|
|
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
|
with:
|
|
name: docker-stub-US-sha256.txt
|
|
path: docker-stub-US-sha256.txt
|
|
if-no-files-found: error
|
|
|
|
- name: Upload Docker stub EU checksum artifact
|
|
if: |
|
|
github.event_name != 'pull_request'
|
|
&& (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc')
|
|
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
|
with:
|
|
name: docker-stub-EU-sha256.txt
|
|
path: docker-stub-EU-sha256.txt
|
|
if-no-files-found: error
|
|
|
|
- name: Build Public API Swagger
|
|
run: |
|
|
cd ./src/Api
|
|
echo "Restore"
|
|
dotnet restore --locked-mode
|
|
echo "Clean"
|
|
dotnet clean -c "Release" -o obj/build-output/publish
|
|
echo "Publish"
|
|
dotnet publish -c "Release" -o obj/build-output/publish
|
|
|
|
dotnet swagger tofile --output ../../swagger.json --host https://api.bitwarden.com \
|
|
./obj/build-output/publish/Api.dll public
|
|
cd ../..
|
|
env:
|
|
ASPNETCORE_ENVIRONMENT: Production
|
|
swaggerGen: "True"
|
|
DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 2
|
|
GLOBALSETTINGS__SQLSERVER__CONNECTIONSTRING: "placeholder"
|
|
|
|
- name: Upload Public API Swagger artifact
|
|
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
|
with:
|
|
name: swagger.json
|
|
path: swagger.json
|
|
if-no-files-found: error
|
|
|
|
- name: Build Internal API Swagger
|
|
run: |
|
|
cd ./src/Api
|
|
echo "Restore API tools"
|
|
dotnet tool restore
|
|
echo "Publish API"
|
|
dotnet publish -c "Release" -o obj/build-output/publish
|
|
|
|
dotnet swagger tofile --output ../../internal.json --host https://api.bitwarden.com \
|
|
./obj/build-output/publish/Api.dll internal
|
|
|
|
cd ../Identity
|
|
|
|
echo "Restore Identity tools"
|
|
dotnet tool restore
|
|
echo "Publish Identity"
|
|
dotnet publish -c "Release" -o obj/build-output/publish
|
|
|
|
dotnet swagger tofile --output ../../identity.json --host https://identity.bitwarden.com \
|
|
./obj/build-output/publish/Identity.dll v1
|
|
cd ../..
|
|
env:
|
|
ASPNETCORE_ENVIRONMENT: Development
|
|
swaggerGen: "True"
|
|
DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 2
|
|
GLOBALSETTINGS__SQLSERVER__CONNECTIONSTRING: "placeholder"
|
|
|
|
- name: Upload Internal API Swagger artifact
|
|
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
|
with:
|
|
name: internal.json
|
|
path: internal.json
|
|
if-no-files-found: error
|
|
|
|
- name: Upload Identity Swagger artifact
|
|
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
|
with:
|
|
name: identity.json
|
|
path: identity.json
|
|
if-no-files-found: error
|
|
|
|
build-mssqlmigratorutility:
|
|
name: Build MSSQL migrator utility
|
|
runs-on: ubuntu-24.04
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
working-directory: "util/MsSqlMigratorUtility"
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
- osx-x64
|
|
- linux-x64
|
|
- win-x64
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Set up .NET
|
|
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4.2.0
|
|
|
|
- name: Print environment
|
|
run: |
|
|
whoami
|
|
dotnet --info
|
|
echo "GitHub ref: $GITHUB_REF"
|
|
echo "GitHub event: $GITHUB_EVENT"
|
|
|
|
- name: Restore project
|
|
run: |
|
|
echo "Restore"
|
|
dotnet restore --locked-mode
|
|
|
|
- name: Publish project
|
|
run: |
|
|
dotnet publish -c "Release" -o obj/build-output/publish -r ${{ matrix.target }} -p:PublishSingleFile=true \
|
|
-p:IncludeNativeLibrariesForSelfExtract=true --self-contained true
|
|
|
|
- name: Upload project artifact for Windows
|
|
if: ${{ contains(matrix.target, 'win') == true }}
|
|
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
|
with:
|
|
name: MsSqlMigratorUtility-${{ matrix.target }}
|
|
path: util/MsSqlMigratorUtility/obj/build-output/publish/MsSqlMigratorUtility.exe
|
|
if-no-files-found: error
|
|
|
|
- name: Upload project artifact
|
|
if: ${{ contains(matrix.target, 'win') == false }}
|
|
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
|
|
with:
|
|
name: MsSqlMigratorUtility-${{ matrix.target }}
|
|
path: util/MsSqlMigratorUtility/obj/build-output/publish/MsSqlMigratorUtility
|
|
if-no-files-found: error
|
|
|
|
self-host-build:
|
|
name: Trigger self-host build
|
|
if: |
|
|
github.event_name != 'pull_request'
|
|
&& (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc')
|
|
runs-on: ubuntu-24.04
|
|
needs: build-container
|
|
steps:
|
|
- name: Log in to Azure - CI subscription
|
|
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
|
with:
|
|
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
|
|
|
|
- name: Retrieve GitHub PAT secrets
|
|
id: retrieve-secret-pat
|
|
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
|
with:
|
|
keyvault: "bitwarden-ci"
|
|
secrets: "github-pat-bitwarden-devops-bot-repo-scope"
|
|
|
|
- name: Trigger self-host build
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
|
with:
|
|
github-token: ${{ steps.retrieve-secret-pat.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
|
|
script: |
|
|
await github.rest.actions.createWorkflowDispatch({
|
|
owner: 'bitwarden',
|
|
repo: 'self-host',
|
|
workflow_id: 'build-unified.yml',
|
|
ref: 'main',
|
|
inputs: {
|
|
server_branch: process.env.GITHUB_REF
|
|
}
|
|
});
|
|
|
|
trigger-k8s-deploy:
|
|
name: Trigger k8s deploy
|
|
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
|
|
runs-on: ubuntu-24.04
|
|
needs: build-container
|
|
steps:
|
|
- name: Log in to Azure - CI subscription
|
|
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
|
with:
|
|
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
|
|
|
|
- name: Retrieve GitHub PAT secrets
|
|
id: retrieve-secret-pat
|
|
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
|
with:
|
|
keyvault: "bitwarden-ci"
|
|
secrets: "github-pat-bitwarden-devops-bot-repo-scope"
|
|
|
|
- name: Trigger k8s deploy
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
|
with:
|
|
github-token: ${{ steps.retrieve-secret-pat.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
|
|
script: |
|
|
await github.rest.actions.createWorkflowDispatch({
|
|
owner: 'bitwarden',
|
|
repo: 'devops',
|
|
workflow_id: 'deploy-k8s.yml',
|
|
ref: 'main',
|
|
inputs: {
|
|
environment: 'US-DEV Cloud',
|
|
tag: 'main'
|
|
}
|
|
})
|
|
|
|
trigger-ee-updates:
|
|
name: Trigger Ephemeral Environment updates
|
|
if: |
|
|
needs.build-container.outputs.has_secrets == 'true'
|
|
&& github.event_name == 'pull_request'
|
|
&& contains(github.event.pull_request.labels.*.name, 'ephemeral-environment')
|
|
runs-on: ubuntu-24.04
|
|
needs: build-container
|
|
steps:
|
|
- name: Log in to Azure - CI subscription
|
|
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
|
with:
|
|
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
|
|
|
|
- name: Retrieve GitHub PAT secrets
|
|
id: retrieve-secret-pat
|
|
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
|
with:
|
|
keyvault: "bitwarden-ci"
|
|
secrets: "github-pat-bitwarden-devops-bot-repo-scope"
|
|
|
|
- name: Trigger Ephemeral Environment update
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
|
with:
|
|
github-token: ${{ steps.retrieve-secret-pat.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
|
|
script: |
|
|
await github.rest.actions.createWorkflowDispatch({
|
|
owner: 'bitwarden',
|
|
repo: 'devops',
|
|
workflow_id: '_update_ephemeral_tags.yml',
|
|
ref: 'main',
|
|
inputs: {
|
|
ephemeral_env_branch: process.env.GITHUB_HEAD_REF
|
|
}
|
|
})
|
|
|
|
trigger-ephemeral-environment-sync:
|
|
name: Trigger Ephemeral Environment Sync
|
|
needs:
|
|
- build-container
|
|
- trigger-ee-updates
|
|
if: |
|
|
needs.build-container.outputs.has_secrets == 'true'
|
|
&& github.event_name == 'pull_request'
|
|
&& contains(github.event.pull_request.labels.*.name, 'ephemeral-environment')
|
|
uses: bitwarden/gh-actions/.github/workflows/_ephemeral_environment_manager.yml@main
|
|
with:
|
|
ephemeral_env_branch: process.env.GITHUB_HEAD_REF
|
|
project: server
|
|
sync_environment: true
|
|
pull_request_number: ${{ github.event.number }}
|
|
secrets: inherit
|
|
|
|
check-failures:
|
|
name: Check for failures
|
|
if: always()
|
|
runs-on: ubuntu-24.04
|
|
needs:
|
|
- lint
|
|
- build-container
|
|
- build-stub-swagger
|
|
- build-mssqlmigratorutility
|
|
- self-host-build
|
|
- trigger-k8s-deploy
|
|
- trigger-ee-updates
|
|
- trigger-ephemeral-environment-sync
|
|
steps:
|
|
- name: Check if any job failed
|
|
if: |
|
|
github.event_name != 'pull_request'
|
|
&& (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc')
|
|
&& contains(needs.*.result, 'failure')
|
|
run: exit 1
|
|
|
|
- name: Log in to Azure - CI subscription
|
|
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
|
if: failure()
|
|
with:
|
|
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
|
|
|
|
- name: Retrieve secrets
|
|
id: retrieve-secrets
|
|
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
|
if: failure()
|
|
with:
|
|
keyvault: "bitwarden-ci"
|
|
secrets: "devops-alerts-slack-webhook-url"
|
|
|
|
- name: Notify Slack on failure
|
|
uses: act10ns/slack@44541246747a30eb3102d87f7a4cc5471b0ffb7d # v2.1.0
|
|
if: failure()
|
|
env:
|
|
SLACK_WEBHOOK_URL: ${{ steps.retrieve-secrets.outputs.devops-alerts-slack-webhook-url }}
|
|
with:
|
|
status: ${{ job.status }}
|