2021-09-02 22:05:17 +02:00
|
|
|
---
|
2021-06-14 21:20:49 +02:00
|
|
|
name: Build
|
2020-12-21 18:46:36 +01:00
|
|
|
|
|
|
|
on:
|
2021-08-10 16:28:21 +02:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
custom_tag_extension:
|
|
|
|
description: "Custom image tag extension"
|
|
|
|
required: false
|
2020-12-21 18:46:36 +01:00
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'l10n_master'
|
|
|
|
- 'gh-pages'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
cloc:
|
2021-06-14 21:20:49 +02:00
|
|
|
name: CLOC
|
2021-09-21 18:37:17 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-12-21 18:46:36 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
2021-05-17 17:18:45 +02:00
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
2020-12-21 18:46:36 +01:00
|
|
|
|
|
|
|
- name: Set up cloc
|
|
|
|
run: |
|
|
|
|
sudo apt update
|
|
|
|
sudo apt -y install cloc
|
|
|
|
|
|
|
|
- name: Print lines of code
|
|
|
|
run: cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git
|
|
|
|
|
2021-06-14 21:20:49 +02:00
|
|
|
|
2021-10-08 18:54:42 +02:00
|
|
|
setup:
|
|
|
|
name: Setup
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
outputs:
|
|
|
|
version: ${{ steps.version.outputs.value }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
|
|
|
|
|
|
|
- name: Get GitHub sha as version
|
|
|
|
id: version
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=value::${GITHUB_SHA:0:7}"
|
|
|
|
|
|
|
|
|
|
|
|
build-oss-selfhost:
|
|
|
|
name: Build OSS zip
|
2021-09-21 18:37:17 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2021-10-08 18:54:42 +02:00
|
|
|
needs: setup
|
|
|
|
env:
|
|
|
|
_VERSION: ${{ needs.setup.outputs.version }}
|
2020-12-21 18:46:36 +01:00
|
|
|
steps:
|
|
|
|
- name: Set up Node
|
2021-05-17 17:18:45 +02:00
|
|
|
uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea
|
2020-12-21 18:46:36 +01:00
|
|
|
with:
|
2021-05-17 17:18:45 +02:00
|
|
|
node-version: '14'
|
2020-12-21 18:46:36 +01:00
|
|
|
|
2021-05-26 22:17:37 +02:00
|
|
|
- name: Update NPM
|
|
|
|
run: |
|
|
|
|
npm install -g npm@7
|
|
|
|
|
2021-06-14 21:20:49 +02:00
|
|
|
- name: Cache npm
|
|
|
|
id: npm-cache
|
2021-09-02 22:05:17 +02:00
|
|
|
uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # v2.1.6
|
2021-06-14 21:20:49 +02:00
|
|
|
with:
|
|
|
|
path: '~/.npm'
|
2021-09-21 18:37:17 +02:00
|
|
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
2021-06-14 21:20:49 +02:00
|
|
|
|
2020-12-21 18:46:36 +01:00
|
|
|
- name: Print environment
|
|
|
|
run: |
|
|
|
|
whoami
|
|
|
|
node --version
|
|
|
|
npm --version
|
|
|
|
gulp --version
|
|
|
|
docker --version
|
|
|
|
echo "GitHub ref: $GITHUB_REF"
|
|
|
|
echo "GitHub event: $GITHUB_EVENT"
|
|
|
|
|
|
|
|
- name: Checkout repo
|
2021-05-17 17:18:45 +02:00
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
2020-12-21 18:46:36 +01:00
|
|
|
|
2021-06-14 21:20:49 +02:00
|
|
|
- name: Install dependencies
|
2021-09-21 18:37:17 +02:00
|
|
|
run: npm ci
|
2021-06-14 21:20:49 +02:00
|
|
|
|
2021-10-08 18:54:42 +02:00
|
|
|
- name: Build OSS selfhost
|
2021-09-21 18:37:17 +02:00
|
|
|
run: |
|
2021-10-08 18:54:42 +02:00
|
|
|
npm run dist:oss:selfhost
|
|
|
|
zip -r web-$_VERSION-selfhosted-open-source.zip build
|
2021-09-21 18:37:17 +02:00
|
|
|
|
2021-10-08 18:54:42 +02:00
|
|
|
- name: Upload build artifact
|
|
|
|
uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700 # v2.2.3
|
|
|
|
with:
|
|
|
|
name: web-${{ env._VERSION }}-selfhosted-open-source.zip
|
|
|
|
path: ./web-${{ env._VERSION }}-selfhosted-open-source.zip
|
|
|
|
if-no-files-found: error
|
2020-12-21 18:46:36 +01:00
|
|
|
|
2021-06-14 21:20:49 +02:00
|
|
|
|
2021-09-21 18:37:17 +02:00
|
|
|
build-cloud:
|
|
|
|
name: Build Cloud zip
|
|
|
|
runs-on: ubuntu-20.04
|
2021-10-08 18:54:42 +02:00
|
|
|
needs: setup
|
|
|
|
env:
|
|
|
|
_VERSION: ${{ needs.setup.outputs.version }}
|
2021-06-14 21:20:49 +02:00
|
|
|
steps:
|
|
|
|
- name: Set up Node
|
|
|
|
uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea
|
|
|
|
with:
|
|
|
|
node-version: '14'
|
|
|
|
|
|
|
|
- name: Update NPM
|
|
|
|
run: |
|
|
|
|
npm install -g npm@7
|
|
|
|
|
|
|
|
- name: Cache npm
|
|
|
|
id: npm-cache
|
2021-09-02 22:05:17 +02:00
|
|
|
uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # v2.1.6
|
2021-06-14 21:20:49 +02:00
|
|
|
with:
|
|
|
|
path: '~/.npm'
|
2021-09-21 18:37:17 +02:00
|
|
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
2021-06-14 21:20:49 +02:00
|
|
|
|
|
|
|
- name: Print environment
|
|
|
|
run: |
|
|
|
|
whoami
|
|
|
|
node --version
|
|
|
|
npm --version
|
|
|
|
gulp --version
|
|
|
|
docker --version
|
|
|
|
echo "GitHub ref: $GITHUB_REF"
|
|
|
|
echo "GitHub event: $GITHUB_EVENT"
|
2021-10-08 18:54:42 +02:00
|
|
|
|
2021-09-21 18:37:17 +02:00
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
2021-06-14 21:20:49 +02:00
|
|
|
|
2021-09-21 18:37:17 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Build Cloud
|
|
|
|
run: |
|
|
|
|
npm run dist:bit:cloud
|
2021-10-08 18:54:42 +02:00
|
|
|
zip -r web-$_VERSION-cloud-COMMERCIAL.zip build
|
2021-09-21 18:37:17 +02:00
|
|
|
|
|
|
|
- name: Upload build artifact
|
|
|
|
uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700 # v2.2.3
|
2021-06-14 21:20:49 +02:00
|
|
|
with:
|
2021-10-08 18:54:42 +02:00
|
|
|
name: web-${{ env._VERSION }}-cloud-COMMERCIAL.zip
|
|
|
|
path: ./web-${{ env._VERSION }}-cloud-COMMERCIAL.zip
|
2021-09-21 18:37:17 +02:00
|
|
|
if-no-files-found: error
|
2021-06-14 21:20:49 +02:00
|
|
|
|
2021-09-21 18:37:17 +02:00
|
|
|
|
2021-10-08 18:54:42 +02:00
|
|
|
build-commercial-selfhost:
|
2021-09-21 18:37:17 +02:00
|
|
|
name: Build SelfHost Docker image
|
|
|
|
runs-on: ubuntu-20.04
|
2021-10-08 18:54:42 +02:00
|
|
|
needs: setup
|
|
|
|
env:
|
|
|
|
_VERSION: ${{ needs.setup.outputs.version }}
|
2021-09-21 18:37:17 +02:00
|
|
|
steps:
|
|
|
|
- name: Set up Node
|
|
|
|
uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea
|
|
|
|
with:
|
|
|
|
node-version: '14'
|
|
|
|
|
|
|
|
- name: Update NPM
|
|
|
|
run: |
|
|
|
|
npm install -g npm@7
|
|
|
|
|
|
|
|
- name: Cache npm
|
|
|
|
id: npm-cache
|
|
|
|
uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # v2.1.6
|
|
|
|
with:
|
|
|
|
path: '~/.npm'
|
|
|
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
|
|
|
|
- name: Print environment
|
|
|
|
run: |
|
|
|
|
whoami
|
|
|
|
node --version
|
|
|
|
npm --version
|
|
|
|
gulp --version
|
|
|
|
docker --version
|
|
|
|
echo "GitHub ref: $GITHUB_REF"
|
|
|
|
echo "GitHub event: $GITHUB_EVENT"
|
|
|
|
|
|
|
|
- name: Setup DCT
|
2021-10-26 23:20:28 +02:00
|
|
|
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/release'
|
2021-09-21 18:37:17 +02:00
|
|
|
id: setup-dct
|
|
|
|
uses: bitwarden/gh-actions/setup-docker-trust@a8c384a05a974c05c48374c818b004be221d43ff
|
|
|
|
with:
|
|
|
|
azure-creds: ${{ secrets.AZURE_PROD_KV_CREDENTIALS }}
|
|
|
|
azure-keyvault-name: "bitwarden-prod-kv"
|
2021-06-14 21:20:49 +02:00
|
|
|
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
|
|
|
|
|
|
|
- name: Restore
|
|
|
|
run: dotnet tool restore
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
echo -e "# Building Web\n"
|
|
|
|
echo "Building app"
|
|
|
|
echo "npm version $(npm --version)"
|
2021-09-08 19:08:31 +02:00
|
|
|
|
2021-09-21 18:37:17 +02:00
|
|
|
npm run dist:bit:selfhost
|
2021-10-08 18:54:42 +02:00
|
|
|
zip -r web-$_VERSION-selfhosted-COMMERCIAL.zip build
|
2021-06-14 21:20:49 +02:00
|
|
|
|
2021-10-08 18:54:42 +02:00
|
|
|
- name: Upload build artifact
|
|
|
|
uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700 # v2.2.3
|
|
|
|
with:
|
|
|
|
name: web-${{ env._VERSION }}-selfhosted-COMMERCIAL.zip
|
|
|
|
path: ./web-${{ env._VERSION }}-selfhosted-COMMERCIAL.zip
|
|
|
|
if-no-files-found: error
|
2021-09-08 19:08:31 +02:00
|
|
|
|
2021-10-08 18:54:42 +02:00
|
|
|
- name: Build Docker image
|
|
|
|
run: |
|
2021-06-14 21:20:49 +02:00
|
|
|
echo -e "\nBuilding Docker image"
|
|
|
|
docker --version
|
2021-09-21 18:37:17 +02:00
|
|
|
docker build -t bitwarden/web .
|
2021-08-10 16:28:21 +02:00
|
|
|
|
2021-09-21 18:37:17 +02:00
|
|
|
- name: Tag rc branch
|
|
|
|
if: github.ref == 'refs/heads/rc'
|
|
|
|
run: docker tag bitwarden/web bitwarden/web:rc
|
2021-06-14 21:20:49 +02:00
|
|
|
|
|
|
|
- name: Tag dev
|
|
|
|
if: github.ref == 'refs/heads/master'
|
2021-09-21 18:37:17 +02:00
|
|
|
run: docker tag bitwarden/web bitwarden/web:dev
|
2021-06-14 21:20:49 +02:00
|
|
|
|
2021-10-21 19:31:41 +02:00
|
|
|
- name: Tag release branch
|
|
|
|
if: github.ref == 'refs/heads/release'
|
|
|
|
run: docker tag bitwarden/web bitwarden/web:latest
|
|
|
|
|
2021-06-14 21:20:49 +02:00
|
|
|
- name: List Docker images
|
2021-10-26 23:20:28 +02:00
|
|
|
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/release'
|
2021-06-14 21:20:49 +02:00
|
|
|
run: docker images
|
|
|
|
|
2021-10-21 19:31:41 +02:00
|
|
|
- name: Push rc image
|
2021-09-21 18:37:17 +02:00
|
|
|
if: github.ref == 'refs/heads/rc'
|
|
|
|
run: docker push bitwarden/web:rc
|
2021-08-10 16:28:21 +02:00
|
|
|
env:
|
2021-09-21 18:37:17 +02:00
|
|
|
DOCKER_CONTENT_TRUST: 1
|
|
|
|
DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE: ${{ steps.setup-dct.outputs.dct-delegate-repo-passphrase }}
|
2021-06-14 21:20:49 +02:00
|
|
|
|
2021-10-21 19:31:41 +02:00
|
|
|
- name: Push dev image
|
2021-06-14 21:20:49 +02:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2021-09-21 18:37:17 +02:00
|
|
|
run: docker push bitwarden/web:dev
|
|
|
|
env:
|
|
|
|
DOCKER_CONTENT_TRUST: 1
|
|
|
|
DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE: ${{ steps.setup-dct.outputs.dct-delegate-repo-passphrase }}
|
2021-06-14 21:20:49 +02:00
|
|
|
|
2021-10-21 19:31:41 +02:00
|
|
|
- name: Push latest image
|
|
|
|
if: github.ref == 'refs/heads/release'
|
|
|
|
run: docker push bitwarden/web:latest
|
|
|
|
env:
|
|
|
|
DOCKER_CONTENT_TRUST: 1
|
|
|
|
DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE: ${{ steps.setup-dct.outputs.dct-delegate-repo-passphrase }}
|
|
|
|
|
2021-06-14 21:20:49 +02:00
|
|
|
- name: Log out of Docker
|
2021-10-26 23:20:28 +02:00
|
|
|
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/release'
|
2021-06-14 21:20:49 +02:00
|
|
|
run: docker logout
|
|
|
|
|
|
|
|
|
2021-10-08 18:54:42 +02:00
|
|
|
build-qa:
|
|
|
|
name: Build Docker images for QA environment
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- name: Set up Node
|
|
|
|
uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea
|
|
|
|
with:
|
|
|
|
node-version: '14'
|
|
|
|
|
|
|
|
- name: Update NPM
|
|
|
|
run: |
|
|
|
|
npm install -g npm@7
|
|
|
|
|
|
|
|
- name: Cache npm
|
|
|
|
id: npm-cache
|
|
|
|
uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # v2.1.6
|
|
|
|
with:
|
|
|
|
path: '~/.npm'
|
|
|
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
|
|
|
|
- name: Print environment
|
|
|
|
run: |
|
|
|
|
whoami
|
|
|
|
node --version
|
|
|
|
npm --version
|
|
|
|
gulp --version
|
|
|
|
docker --version
|
|
|
|
echo "GitHub ref: $GITHUB_REF"
|
|
|
|
echo "GitHub event: $GITHUB_EVENT"
|
|
|
|
|
|
|
|
- name: Login to Azure
|
|
|
|
uses: Azure/login@77f1b2e3fb80c0e8645114159d17008b8a2e475a
|
|
|
|
with:
|
|
|
|
creds: ${{ secrets.AZURE_QA_KV_CREDENTIALS }}
|
|
|
|
|
|
|
|
- name: Log into container registry
|
|
|
|
run: az acr login -n bitwardenqa
|
|
|
|
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
|
|
|
|
|
|
|
- name: Restore
|
|
|
|
run: dotnet tool restore
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
echo -e "# Building Web\n"
|
|
|
|
echo "Building app"
|
|
|
|
echo "npm version $(npm --version)"
|
|
|
|
VERSION=$( jq -r ".version" package.json)
|
|
|
|
jq --arg version "$VERSION - ${GITHUB_SHA:0:7}" '.version = $version' package.json > package.json.tmp
|
|
|
|
mv package.json.tmp package.json
|
|
|
|
|
|
|
|
npm run build:bit:qa
|
|
|
|
|
|
|
|
echo "{\"commit_hash\": \"$GITHUB_SHA\", \"ref\": \"$GITHUB_REF\"}" | jq . > build/info.json
|
|
|
|
|
|
|
|
echo -e "\nBuilding Docker image"
|
|
|
|
docker --version
|
|
|
|
docker build -t bitwardenqa.azurecr.io/web .
|
|
|
|
|
|
|
|
- name: Get image tag
|
|
|
|
id: image-tag
|
|
|
|
run: |
|
|
|
|
IMAGE_TAG=$(echo "$GITHUB_REF" | awk '{split($0, a, "/"); print a[3];}')
|
|
|
|
TAG_EXTENSION=${{ github.event.inputs.custom_tag_extension }}
|
|
|
|
|
|
|
|
if [[ $TAG_EXTENSION ]]; then
|
|
|
|
IMAGE_TAG=$IMAGE_TAG-$TAG_EXTENSION
|
|
|
|
fi
|
|
|
|
echo "::set-output name=value::$IMAGE_TAG"
|
|
|
|
|
|
|
|
- name: Tag image
|
|
|
|
env:
|
|
|
|
IMAGE_TAG: ${{ steps.image-tag.outputs.value }}
|
|
|
|
run: docker tag bitwardenqa.azurecr.io/web "bitwardenqa.azurecr.io/web:$IMAGE_TAG"
|
|
|
|
|
|
|
|
- name: Tag dev
|
|
|
|
if: github.ref == 'refs/heads/master'
|
|
|
|
run: docker tag bitwardenqa.azurecr.io/web bitwardenqa.azurecr.io/web:dev
|
|
|
|
|
|
|
|
- name: List Docker images
|
|
|
|
run: docker images
|
|
|
|
|
|
|
|
- name: Push image
|
|
|
|
env:
|
|
|
|
IMAGE_TAG: ${{ steps.image-tag.outputs.value }}
|
|
|
|
run: docker push "bitwardenqa.azurecr.io/web:$IMAGE_TAG"
|
|
|
|
|
|
|
|
- name: Push dev images
|
|
|
|
if: github.ref == 'refs/heads/master'
|
|
|
|
run: docker push bitwardenqa.azurecr.io/web:dev
|
|
|
|
|
|
|
|
- name: Log out of Docker
|
|
|
|
run: docker logout
|
|
|
|
|
|
|
|
|
2020-12-21 18:46:36 +01:00
|
|
|
windows:
|
2021-06-14 21:20:49 +02:00
|
|
|
name: Test code on Windows
|
2021-09-21 18:37:17 +02:00
|
|
|
runs-on: windows-2019
|
2020-12-21 18:46:36 +01:00
|
|
|
steps:
|
|
|
|
- name: Set up NuGet
|
2021-05-17 17:18:45 +02:00
|
|
|
uses: nuget/setup-nuget@04b0c2b8d1b97922f67eca497d7cf0bf17b8ffe1
|
2020-12-21 18:46:36 +01:00
|
|
|
with:
|
|
|
|
nuget-version: 'latest'
|
|
|
|
|
|
|
|
- name: Set up MSBuild
|
2021-05-17 17:18:45 +02:00
|
|
|
uses: microsoft/setup-msbuild@c26a08ba26249b81327e26f6ef381897b6a8754d
|
2020-12-21 18:46:36 +01:00
|
|
|
|
2021-09-21 18:37:17 +02:00
|
|
|
- name: Cache npm
|
|
|
|
id: npm-cache
|
|
|
|
uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # v2.1.6
|
|
|
|
with:
|
|
|
|
path: '~/.npm'
|
|
|
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
|
2020-12-21 18:46:36 +01:00
|
|
|
- name: Set up Node
|
2021-05-17 17:18:45 +02:00
|
|
|
uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea
|
2020-12-21 18:46:36 +01:00
|
|
|
with:
|
2021-05-17 17:18:45 +02:00
|
|
|
node-version: '14'
|
2020-12-21 18:46:36 +01:00
|
|
|
|
2021-05-26 22:17:37 +02:00
|
|
|
- name: Update NPM
|
|
|
|
run: |
|
|
|
|
npm install -g npm@7
|
|
|
|
|
2020-12-21 18:46:36 +01:00
|
|
|
- name: Print environment
|
|
|
|
run: |
|
2021-05-17 17:18:45 +02:00
|
|
|
nuget help | grep Version
|
2020-12-21 18:46:36 +01:00
|
|
|
msbuild -version
|
|
|
|
dotnet --info
|
|
|
|
node --version
|
|
|
|
npm --version
|
2021-05-17 17:18:45 +02:00
|
|
|
echo "GitHub ref: $GITHUB_REF"
|
|
|
|
echo "GitHub event: $GITHUB_EVENT"
|
2020-12-21 18:46:36 +01:00
|
|
|
env:
|
|
|
|
GITHUB_REF: ${{ github.ref }}
|
|
|
|
GITHUB_EVENT: ${{ github.event_name }}
|
|
|
|
|
|
|
|
- name: Checkout repo
|
2021-05-17 17:18:45 +02:00
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
2020-12-21 18:46:36 +01:00
|
|
|
|
2021-09-21 18:37:17 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
2021-10-08 18:54:42 +02:00
|
|
|
|
2021-11-24 19:23:31 +01:00
|
|
|
- name: Run linter
|
|
|
|
run: npm run lint
|
2020-12-21 18:46:36 +01:00
|
|
|
|
2021-09-02 22:05:17 +02:00
|
|
|
- name: NPM build
|
2021-09-14 13:26:26 +02:00
|
|
|
run: npm run build:bit:cloud
|
2021-10-14 20:34:31 +02:00
|
|
|
|
|
|
|
|
2021-11-04 19:15:29 +01:00
|
|
|
crowdin-push:
|
|
|
|
name: Crowdin Push
|
|
|
|
if: github.ref == 'refs/heads/master'
|
|
|
|
needs:
|
|
|
|
- build-oss-selfhost
|
|
|
|
- build-cloud
|
|
|
|
- build-commercial-selfhost
|
|
|
|
- build-qa
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
env:
|
|
|
|
_CROWDIN_PROJECT_ID: "308189"
|
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
|
|
|
|
|
|
|
|
- name: Login to Azure
|
|
|
|
uses: Azure/login@77f1b2e3fb80c0e8645114159d17008b8a2e475a
|
|
|
|
with:
|
|
|
|
creds: ${{ secrets.AZURE_PROD_KV_CREDENTIALS }}
|
|
|
|
|
|
|
|
- name: Retrieve secrets
|
|
|
|
id: retrieve-secrets
|
|
|
|
uses: Azure/get-keyvault-secrets@80ccd3fafe5662407cc2e55f202ee34bfff8c403
|
|
|
|
with:
|
|
|
|
keyvault: "bitwarden-prod-kv"
|
|
|
|
secrets: "crowdin-api-token"
|
|
|
|
|
|
|
|
- name: Upload Sources
|
|
|
|
uses: crowdin/github-action@e39093fd75daae7859c68eded4b43d42ec78d8ea # v1.3.2
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}
|
|
|
|
with:
|
|
|
|
config: crowdin.yml
|
|
|
|
crowdin_branch_name: master
|
|
|
|
upload_sources: true
|
|
|
|
upload_translations: false
|
|
|
|
|
|
|
|
|
2021-10-14 20:34:31 +02:00
|
|
|
check-failures:
|
|
|
|
name: Check for failures
|
|
|
|
if: always()
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs:
|
|
|
|
- cloc
|
|
|
|
- setup
|
|
|
|
- build-oss-selfhost
|
|
|
|
- build-cloud
|
|
|
|
- build-commercial-selfhost
|
|
|
|
- build-qa
|
2021-11-04 19:15:29 +01:00
|
|
|
- crowdin-push
|
2021-10-14 20:34:31 +02:00
|
|
|
- windows
|
|
|
|
steps:
|
|
|
|
- name: Check if any job failed
|
2021-10-15 19:06:59 +02:00
|
|
|
if: ${{ (github.ref == 'refs/heads/master') || (github.ref == 'refs/heads/rc') }}
|
2021-10-14 20:34:31 +02:00
|
|
|
env:
|
|
|
|
CLOC_STATUS: ${{ needs.cloc.result }}
|
|
|
|
SETUP_STATUS: ${{ needs.setup.result }}
|
|
|
|
BUILD_OSS_SELFHOST_STATUS: ${{ needs.build-oss-selfhost.result }}
|
|
|
|
BUILD_CLOUD_STATUS: ${{ needs.build-cloud.result }}
|
|
|
|
BUILD_COMMERCIAL_SELFHOST_STATUS: ${{ needs.build-commercial-selfhost.result }}
|
2021-11-04 19:15:29 +01:00
|
|
|
BUILD_QA_STATUS: ${{ needs.build-qa.result }}
|
|
|
|
CROWDIN_PUSH_STATUS: ${{ needs.crowdin-push.result }}
|
|
|
|
WINDOWS_STATUS: ${{ needs.windows.result }}
|
2021-10-14 20:34:31 +02:00
|
|
|
run: |
|
|
|
|
if [ "$CLOC_STATUS" = "failure" ]; then
|
|
|
|
exit 1
|
|
|
|
elif [ "$SETUP_STATUS" = "failure" ]; then
|
|
|
|
exit 1
|
|
|
|
elif [ "$BUILD_OSS_SELFHOST_STATUS" = "failure" ]; then
|
|
|
|
exit 1
|
|
|
|
elif [ "$BUILD_CLOUD_STATUS" = "failure" ]; then
|
|
|
|
exit 1
|
|
|
|
elif [ "$BUILD_COMMERCIAL_SELFHOST_STATUS" = "failure" ]; then
|
|
|
|
exit 1
|
2021-11-04 19:15:29 +01:00
|
|
|
elif [ "$BUILD_QA_STATUS" = "failure" ]; then
|
|
|
|
exit 1
|
|
|
|
elif [ "$CROWDIN_PUSH_STATUS" = "failure" ]; then
|
2021-10-14 20:34:31 +02:00
|
|
|
exit 1
|
2021-11-04 19:15:29 +01:00
|
|
|
elif [ "$WINDOWS_STATUS" = "failure" ]; then
|
2021-10-14 20:34:31 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Login to Azure - Prod Subscription
|
|
|
|
uses: Azure/login@77f1b2e3fb80c0e8645114159d17008b8a2e475a
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
creds: ${{ secrets.AZURE_PROD_KV_CREDENTIALS }}
|
|
|
|
|
|
|
|
- name: Retrieve secrets
|
|
|
|
id: retrieve-secrets
|
|
|
|
uses: Azure/get-keyvault-secrets@80ccd3fafe5662407cc2e55f202ee34bfff8c403
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
keyvault: "bitwarden-prod-kv"
|
|
|
|
secrets: "devops-alerts-slack-webhook-url"
|
|
|
|
|
|
|
|
- name: Notify Slack on failure
|
|
|
|
uses: act10ns/slack@e4e71685b9b239384b0f676a63c32367f59c2522 # v1.2.2
|
|
|
|
if: failure()
|
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ steps.retrieve-secrets.outputs.devops-alerts-slack-webhook-url }}
|
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|