From d2565406447e904d3856826aa9c0ea71b5ed845e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Francisco=20Concepci=C3=B3n?= Date: Tue, 19 Sep 2023 10:21:26 +0100 Subject: [PATCH 1/3] Fix Detekt job --- .github/workflows/release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c538430c..416473e4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,11 +7,17 @@ on: jobs: detekt: runs-on: ubuntu-latest - timeout-minutes: 5 + timeout-minutes: 10 steps: - name: Checkout uses: actions/checkout@v3 + - name: Setup Java 17 + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: 17 + - name: Gradle cache uses: gradle/gradle-build-action@v2 From 85c0fcb0f9439984f70b3016c3bb8926dfe12f4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Francisco=20Concepci=C3=B3n?= Date: Tue, 19 Sep 2023 10:22:01 +0100 Subject: [PATCH 2/3] Make release staged with 33% percentage rollout --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 416473e4..2b360949 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -205,4 +205,5 @@ jobs: track: production mappingFile: mapping.txt whatsNewDirectory: whatsNew - status: completed + status: inProgress + userFraction: 0.33 From f1473b9b2ffbe00896f75c681825328d3eb9c483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Francisco=20Concepci=C3=B3n?= Date: Tue, 19 Sep 2023 10:38:44 +0100 Subject: [PATCH 3/3] Increase timeout for unit tests --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b360949..db1f2ae7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: unit_tests: runs-on: ubuntu-latest - timeout-minutes: 10 + timeout-minutes: 20 steps: - name: Checkout