2021-09-02 22:03:47 +02:00
|
|
|
---
|
2021-02-02 00:27:08 +01:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'l10n_master'
|
|
|
|
workflow_dispatch:
|
2021-09-28 00:55:53 +02:00
|
|
|
inputs: {}
|
2021-02-02 00:27:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
cloc:
|
2021-09-02 22:03:47 +02:00
|
|
|
name: CLOC
|
2021-09-28 00:55:53 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2021-02-02 00:27:08 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
2021-05-17 22:09:59 +02:00
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
2021-02-02 00:27:08 +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
|
|
|
|
|
|
|
|
|
|
|
|
setup:
|
2021-09-02 22:03:47 +02:00
|
|
|
name: Setup
|
2021-09-28 00:55:53 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2021-02-02 00:27:08 +01:00
|
|
|
outputs:
|
|
|
|
repo_url: ${{ steps.gen_vars.outputs.repo_url }}
|
|
|
|
adj_build_number: ${{ steps.gen_vars.outputs.adj_build_number }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
2021-05-17 22:09:59 +02:00
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
2021-02-02 00:27:08 +01:00
|
|
|
|
|
|
|
- name: Get Package Version
|
|
|
|
id: gen_vars
|
|
|
|
run: |
|
2021-02-02 23:27:29 +01:00
|
|
|
repo_url=https://github.com/$GITHUB_REPOSITORY.git
|
|
|
|
adj_build_num=${GITHUB_SHA:0:7}
|
2021-02-02 00:27:08 +01:00
|
|
|
|
2021-09-02 22:03:47 +02:00
|
|
|
echo "::set-output name=repo_url::$repo_url"
|
|
|
|
echo "::set-output name=adj_build_number::$adj_build_num"
|
2021-02-02 00:27:08 +01:00
|
|
|
|
2021-05-13 01:52:27 +02:00
|
|
|
locales-test:
|
2021-09-02 22:03:47 +02:00
|
|
|
name: Locales Test
|
2021-09-28 00:55:53 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2021-02-02 00:27:08 +01:00
|
|
|
needs: setup
|
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
2021-05-17 22:09:59 +02:00
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
2021-02-02 00:27:08 +01:00
|
|
|
|
2021-05-13 22:28:36 +02:00
|
|
|
- name: Testing locales - extName length
|
2021-05-13 00:25:13 +02:00
|
|
|
run: |
|
2021-05-13 22:43:19 +02:00
|
|
|
found_error=false
|
|
|
|
|
|
|
|
echo "Locales Test"
|
|
|
|
echo "============"
|
|
|
|
echo "extName string must be 40 characters or less"
|
|
|
|
echo
|
|
|
|
for locale in $(ls src/_locales/); do
|
|
|
|
string_length=$(jq '.extName.message | length' src/_locales/$locale/messages.json)
|
|
|
|
if [[ $string_length -gt 40 ]]; then
|
|
|
|
echo "$locale: $string_length"
|
|
|
|
found_error=true
|
|
|
|
fi
|
|
|
|
done
|
2021-09-02 22:03:47 +02:00
|
|
|
|
2021-05-13 22:43:19 +02:00
|
|
|
if $found_error; then
|
|
|
|
echo
|
|
|
|
echo "Please fix 'extName' for the locales listed above."
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "Test passed!"
|
2021-09-02 22:03:47 +02:00
|
|
|
fi
|
2021-05-13 00:27:47 +02:00
|
|
|
|
2021-05-13 01:52:27 +02:00
|
|
|
build:
|
2021-09-02 22:03:47 +02:00
|
|
|
name: Build
|
2021-09-28 00:55:53 +02:00
|
|
|
runs-on: windows-2019
|
|
|
|
needs:
|
|
|
|
- setup
|
|
|
|
- locales-test
|
2021-05-13 01:52:27 +02:00
|
|
|
env:
|
2021-09-02 22:03:47 +02:00
|
|
|
_BUILD_NUMBER: ${{ needs.setup.outputs.adj_build_number }}
|
2021-05-13 01:52:27 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
2021-05-17 22:09:59 +02:00
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
2021-05-13 01:52:27 +02:00
|
|
|
|
|
|
|
- name: Set up Node
|
2021-05-17 22:09:59 +02:00
|
|
|
uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea
|
2021-05-13 01:52:27 +02:00
|
|
|
with:
|
2021-12-10 16:11:44 +01:00
|
|
|
node-version: '16'
|
2021-05-13 01:52:27 +02:00
|
|
|
|
|
|
|
- name: Print environment
|
|
|
|
run: |
|
|
|
|
node --version
|
|
|
|
npm --version
|
|
|
|
|
2021-09-02 22:03:47 +02:00
|
|
|
- name: NPM setup & test
|
2021-02-02 00:27:08 +01:00
|
|
|
run: |
|
2021-12-03 21:35:34 +01:00
|
|
|
npm ci
|
2021-02-02 00:27:08 +01:00
|
|
|
npm run dist
|
|
|
|
npm run test
|
|
|
|
|
2021-12-21 15:15:19 +01:00
|
|
|
- name: Run linter
|
|
|
|
run: npm run lint
|
2021-12-03 21:35:34 +01:00
|
|
|
|
2021-09-02 22:03:47 +02:00
|
|
|
- name: Gulp
|
2021-02-02 00:27:08 +01:00
|
|
|
run: gulp ci
|
2021-02-02 18:56:34 +01:00
|
|
|
|
2021-09-28 00:55:53 +02:00
|
|
|
- name: Build sources for reviewers
|
|
|
|
shell: cmd
|
|
|
|
run: |
|
|
|
|
mkdir dist\Source
|
2021-10-27 19:49:50 +02:00
|
|
|
call git clone %GITHUB_SERVER_URL%/%GITHUB_REPOSITORY% dist\Source
|
2021-09-28 00:55:53 +02:00
|
|
|
cd dist\Source
|
|
|
|
call git checkout %GITHUB_SHA%
|
|
|
|
call git submodule update --init --recursive
|
|
|
|
cd ../
|
|
|
|
del /S/Q "Source\.git\objects\pack\*"
|
2021-10-27 20:46:37 +02:00
|
|
|
call 7z a browser-source.zip "Source\*"
|
2021-09-28 00:55:53 +02:00
|
|
|
|
2021-09-02 22:03:47 +02:00
|
|
|
- name: Upload Opera artifact
|
2021-05-17 22:09:59 +02:00
|
|
|
uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700
|
2021-02-02 00:27:08 +01:00
|
|
|
with:
|
2021-09-02 22:03:47 +02:00
|
|
|
name: dist-opera-${{ env._BUILD_NUMBER }}.zip
|
2021-09-14 21:46:25 +02:00
|
|
|
path: dist/dist-opera.zip
|
2021-09-14 21:03:36 +02:00
|
|
|
if-no-files-found: error
|
2021-02-02 00:27:08 +01:00
|
|
|
|
2021-09-02 22:03:47 +02:00
|
|
|
- name: Upload Chrome artifact
|
2021-05-17 22:09:59 +02:00
|
|
|
uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700
|
2021-02-02 00:27:08 +01:00
|
|
|
with:
|
2021-09-02 22:03:47 +02:00
|
|
|
name: dist-chrome-${{ env._BUILD_NUMBER }}.zip
|
2021-09-14 21:46:25 +02:00
|
|
|
path: dist/dist-chrome.zip
|
2021-09-14 21:03:36 +02:00
|
|
|
if-no-files-found: error
|
2021-02-02 00:27:08 +01:00
|
|
|
|
2021-09-02 22:03:47 +02:00
|
|
|
- name: Upload Firefox artifact
|
2021-05-17 22:09:59 +02:00
|
|
|
uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700
|
2021-02-02 00:27:08 +01:00
|
|
|
with:
|
2021-09-02 22:03:47 +02:00
|
|
|
name: dist-firefox-${{ env._BUILD_NUMBER }}.zip
|
2021-09-14 21:46:25 +02:00
|
|
|
path: dist/dist-firefox.zip
|
2021-09-14 21:03:36 +02:00
|
|
|
if-no-files-found: error
|
2021-02-02 00:27:08 +01:00
|
|
|
|
2021-09-02 22:03:47 +02:00
|
|
|
- name: Upload Edge artifact
|
2021-05-17 22:09:59 +02:00
|
|
|
uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700
|
2021-02-02 00:27:08 +01:00
|
|
|
with:
|
2021-09-02 22:03:47 +02:00
|
|
|
name: dist-edge-${{ env._BUILD_NUMBER }}.zip
|
2021-09-14 21:46:25 +02:00
|
|
|
path: dist/dist-edge.zip
|
2021-09-14 21:03:36 +02:00
|
|
|
if-no-files-found: error
|
2021-02-02 00:27:08 +01:00
|
|
|
|
2021-09-28 00:55:53 +02:00
|
|
|
- name: Upload browser source
|
|
|
|
uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700
|
|
|
|
with:
|
|
|
|
name: browser-source-${{ env._BUILD_NUMBER }}.zip
|
2021-10-27 20:46:37 +02:00
|
|
|
path: dist/browser-source.zip
|
2021-09-28 00:55:53 +02:00
|
|
|
if-no-files-found: error
|
|
|
|
|
2021-02-02 22:27:15 +01:00
|
|
|
- name: Upload coverage artifact
|
2021-09-14 21:53:25 +02:00
|
|
|
if: false
|
2021-05-17 22:09:59 +02:00
|
|
|
uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700
|
2021-02-02 00:27:08 +01:00
|
|
|
with:
|
2021-09-02 22:03:47 +02:00
|
|
|
name: coverage-${{ env._BUILD_NUMBER }}.zip
|
|
|
|
path: coverage/coverage-${{ env._BUILD_NUMBER }}.zip
|
2021-09-14 21:03:36 +02:00
|
|
|
if-no-files-found: error
|
2021-10-13 23:54:22 +02:00
|
|
|
|
|
|
|
|
2021-11-04 21:02:06 +01:00
|
|
|
crowdin-push:
|
|
|
|
name: Crowdin Push
|
2021-11-04 21:04:59 +01:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2021-11-04 21:02:06 +01:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs:
|
|
|
|
- build
|
|
|
|
env:
|
|
|
|
_CROWDIN_PROJECT_ID: "268134"
|
|
|
|
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-13 23:54:22 +02:00
|
|
|
check-failures:
|
|
|
|
name: Check for failures
|
|
|
|
if: always()
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs:
|
|
|
|
- cloc
|
|
|
|
- setup
|
|
|
|
- locales-test
|
|
|
|
- build
|
2021-11-04 21:02:06 +01:00
|
|
|
- crowdin-push
|
2021-10-13 23:54:22 +02:00
|
|
|
steps:
|
|
|
|
- name: Check if any job failed
|
2021-10-15 19:07:15 +02:00
|
|
|
if: ${{ (github.ref == 'refs/heads/master') || (github.ref == 'refs/heads/rc') }}
|
2021-10-13 23:54:22 +02:00
|
|
|
env:
|
|
|
|
CLOC_STATUS: ${{ needs.cloc.result }}
|
|
|
|
SETUP_STATUS: ${{ needs.setup.result }}
|
|
|
|
LOCALES_TEST_STATUS: ${{ needs.locales-test.result }}
|
|
|
|
BUILD_STATUS: ${{ needs.build.result }}
|
2021-11-04 21:02:06 +01:00
|
|
|
CROWDIN_PUSH_STATUS: ${{ needs.crowdin-push.result }}
|
2021-10-13 23:54:22 +02:00
|
|
|
run: |
|
|
|
|
if [ "$CLOC_STATUS" = "failure" ]; then
|
|
|
|
exit 1
|
|
|
|
elif [ "$SETUP_STATUS" = "failure" ]; then
|
|
|
|
exit 1
|
|
|
|
elif [ "$LOCALES_TEST_STATUS" = "failure" ]; then
|
|
|
|
exit 1
|
|
|
|
elif [ "$BUILD_STATUS" = "failure" ]; then
|
|
|
|
exit 1
|
2021-11-04 21:02:06 +01:00
|
|
|
elif [ "$CROWDIN_PUSH_STATUS" = "failure" ]; then
|
|
|
|
exit 1
|
2021-10-13 23:54:22 +02:00
|
|
|
fi
|
2021-11-04 21:02:06 +01:00
|
|
|
|
2021-10-13 23:54:22 +02:00
|
|
|
- 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 }}
|