From 559b8e01c43c80d81fc10484a18981aa31c81496 Mon Sep 17 00:00:00 2001 From: tim-allen-ck Date: Thu, 27 Jun 2024 10:04:21 +0100 Subject: [PATCH 1/3] update --- .github/workflows/pr_comment_bot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_comment_bot.yml b/.github/workflows/pr_comment_bot.yml index cfc14dc739..6e0d034ae6 100644 --- a/.github/workflows/pr_comment_bot.yml +++ b/.github/workflows/pr_comment_bot.yml @@ -164,7 +164,7 @@ jobs: (needs.pr_comment.outputs.command == 'run-tests-shared-services' && 'shared_services') || (needs.pr_comment.outputs.command == 'run-tests' && '') }} environmentName: CICD - E2E_TESTS_NUMBER_PROCESSES: 1 + E2E_TESTS_NUMBER_PROCESSES: 3 DEVCONTAINER_TAG: ${{ needs.pr_comment.outputs.prRefId }} secrets: AAD_TENANT_ID: ${{ secrets.AAD_TENANT_ID }} From 2f9159e9b50d3d1c5f2f5f7bc8806b462b390677 Mon Sep 17 00:00:00 2001 From: tim-allen-ck Date: Thu, 27 Jun 2024 10:05:27 +0100 Subject: [PATCH 2/3] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e83998c24..e72bd2026e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ ENHANCEMENTS: * Update Guacamole Windows 11 VM Image to 2Win11-23h2-pro ([#3995](https://github.com/microsoft/AzureTRE/issues/3995)) * Make check for email addresses prior to an airlock request being created optional. ([#3904](https://github.com/microsoft/AzureTRE/issues/3904)) * Add Firewall SKU variable ([#3961](https://github.com/microsoft/AzureTRE/issues/3961)) +* Increase `E2E_TESTS_NUMBER_PROCESSES` from `1` to `3` in [pr_comment_bot.yml](.github/workflows/pr_comment_bot.yml) BUG FIXES: * Update Guacamole Linux VM Images to Ubuntu 22.04 LTS. Part of ([#3523](https://github.com/microsoft/AzureTRE/issues/3523)) From 1438834bef098c29fa7ca880cb71dea9062716a8 Mon Sep 17 00:00:00 2001 From: tim-allen-ck Date: Thu, 27 Jun 2024 11:43:50 +0100 Subject: [PATCH 3/3] test --- .github/scripts/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/build.js b/.github/scripts/build.js index 9a144926ed..e6d17b8f84 100644 --- a/.github/scripts/build.js +++ b/.github/scripts/build.js @@ -292,7 +292,7 @@ function getRefIdForBranch(branchName) { return createShortHash(`refs/heads/${branchName}\n`); } function createShortHash(ref) { - const hash = createHash('sha2').update(ref, 'utf8').digest('hex') + const hash = createHash('sha1').update(ref, 'utf8').digest('hex') return hash.substring(0, 8); }