From 86743a025b5ea566fc629cf83e230c7441106c6b Mon Sep 17 00:00:00 2001 From: januszjanus Date: Wed, 16 Oct 2024 08:41:45 +0200 Subject: [PATCH 01/19] add running allure report flow after forge ci job --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8459730cf35..94e2e5a28bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,4 +16,7 @@ jobs: ci: uses: input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.1.0 with: - forge_version: 0.2.1 \ No newline at end of file + forge_version: 0.2.1 + + allure: + uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@ci/v0.2.0 From d0668eef93d10032f9728c516b328fa1cb28e0d4 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Wed, 16 Oct 2024 08:54:46 +0200 Subject: [PATCH 02/19] add temp trigger for this branch --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94e2e5a28bc..88ccf5590ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: [main] + branches: [main, 974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run] tags: ['*'] pull_request: From 84425820fec1d3bba58398cc01a6eafa15dffdd7 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Wed, 16 Oct 2024 09:22:32 +0200 Subject: [PATCH 03/19] try 1 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88ccf5590ff..e9d50ddf463 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: [main, 974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run] + branches: [main] tags: ['*'] pull_request: @@ -19,4 +19,4 @@ jobs: forge_version: 0.2.1 allure: - uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@ci/v0.2.0 + uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@main From 38d9e90783b389c2a77f642aeb5bfef33cbfaf7d Mon Sep 17 00:00:00 2001 From: januszjanus Date: Wed, 16 Oct 2024 09:25:39 +0200 Subject: [PATCH 04/19] try 2 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9d50ddf463..9b0959f7219 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: branches: [main] tags: ['*'] pull_request: + workflow_call: permissions: id-token: write From 307e66db8504a728043acc819d9b99c2ecc43b07 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Wed, 16 Oct 2024 09:26:57 +0200 Subject: [PATCH 05/19] try 3 --- .github/workflows/ci.yml | 1 - .github/workflows/generate-allure-report.yml | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b0959f7219..e9d50ddf463 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,6 @@ on: branches: [main] tags: ['*'] pull_request: - workflow_call: permissions: id-token: write diff --git a/.github/workflows/generate-allure-report.yml b/.github/workflows/generate-allure-report.yml index b9ec0d98126..7b299c7b854 100644 --- a/.github/workflows/generate-allure-report.yml +++ b/.github/workflows/generate-allure-report.yml @@ -5,6 +5,7 @@ on: push: branches: "main" tags: ["*"] + workflow_call: permissions: contents: write From 8f4d6fe2d769936fed3f4dfcd8cd87aec5382a31 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Wed, 16 Oct 2024 09:28:13 +0200 Subject: [PATCH 06/19] try 4 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9d50ddf463..4b8e43a65c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,4 +19,4 @@ jobs: forge_version: 0.2.1 allure: - uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@main + uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run From 38d66ecc6de00f52dc8dd3ad64ccd872e8ce8385 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Wed, 16 Oct 2024 13:01:20 +0200 Subject: [PATCH 07/19] add running after ci finishes --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b8e43a65c4..cb681bdeac1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,4 +19,5 @@ jobs: forge_version: 0.2.1 allure: + needs: ci uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run From f67a82431ea3a792078e0739fd2aeac9ae9c3554 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Wed, 16 Oct 2024 14:36:15 +0200 Subject: [PATCH 08/19] try using forge run instead of ci run --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb681bdeac1..36993e610d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,5 +19,5 @@ jobs: forge_version: 0.2.1 allure: - needs: ci +# needs: ci uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run From f83e1c72fb7b245f9d543809c094455453ba5903 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Wed, 16 Oct 2024 14:43:46 +0200 Subject: [PATCH 09/19] try using forge run instead of ci run for all possible in allure flow --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36993e610d0..cb681bdeac1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,5 +19,5 @@ jobs: forge_version: 0.2.1 allure: -# needs: ci + needs: ci uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run From b50d43cb6dec4ad7d2316be40d98a2ee58d55976 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Thu, 17 Oct 2024 09:25:27 +0200 Subject: [PATCH 10/19] add forge setup step --- .github/workflows/ci.yml | 2 + .github/workflows/generate-allure-report.yml | 62 ++++++++++++++++---- 2 files changed, 52 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb681bdeac1..70ad0b081b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,3 +21,5 @@ jobs: allure: needs: ci uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run + with: + forge_version: 0.2.1 diff --git a/.github/workflows/generate-allure-report.yml b/.github/workflows/generate-allure-report.yml index 7b299c7b854..e94f40a14ab 100644 --- a/.github/workflows/generate-allure-report.yml +++ b/.github/workflows/generate-allure-report.yml @@ -6,6 +6,17 @@ on: branches: "main" tags: ["*"] workflow_call: + inputs: + forge_version: + description: | + The version of the forge CLI to install (use 'local' for testing) + type: string + required: false + default: latest + secrets: + earthly_token: + description: Optional Earthly token used to login to Earthly cloud during local builds of Forge CLI + required: false permissions: contents: write @@ -33,19 +44,43 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install Forge + uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.0 + if: ${{ inputs.forge_version != 'local' }} + with: + version: ${{ inputs.forge_version }} + + - name: Install Local Forge + uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.0 + if: ${{ inputs.forge_version == 'local' }} + with: + earthly_token: ${{ secrets.earthly_token }} + + - name: Check forge version + id: local + run: | + forge version + + if [[ "${{ inputs.forge_version }}" == "local" ]]; then + echo "skip=true" >> $GITHUB_OUTPUT + else + echo "skip=false" >> $GITHUB_OUTPUT + fi + - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@master + uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.0 with: - aws_role_arn: ${{ env.AWS_ROLE_ARN }} - aws_region: ${{ env.AWS_REGION }} - earthly_runner_secret: ${{ secrets.EARTHLY_RUNNER_SECRET }} + skip_docker: 'true' + skip_github: 'true' + skip_earthly: ${{ steps.local.outputs.skip }} - name: Get catalyst gateway unit test report - uses: input-output-hk/catalyst-ci/actions/run@master + uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.1.0 if: always() continue-on-error: true with: - earthfile: ./catalyst-gateway/ + earthfiles: ./catalyst-gateway/ + forge_version: 0.2.1 flags: targets: build target_flags: @@ -53,11 +88,12 @@ jobs: artifact: "false" - name: Get schemathesis test report - uses: input-output-hk/catalyst-ci/actions/run@master + uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.1.0 if: always() continue-on-error: true with: - earthfile: ./catalyst-gateway/tests/schemathesis_tests + earthfiles: ./catalyst-gateway/tests/schemathesis_tests + forge_version: 0.2.1 flags: --allow-privileged targets: test-fuzzer-api target_flags: @@ -65,11 +101,12 @@ jobs: artifact: "false" - name: Get flutter unit test report - uses: input-output-hk/catalyst-ci/actions/run@master + uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.1.0 if: always() continue-on-error: true with: - earthfile: ./catalyst_voices/ + earthfiles: ./catalyst_voices/ + forge_version: 0.2.1 flags: targets: test-unit target_flags: @@ -77,11 +114,12 @@ jobs: artifact: "false" - name: Get python api test report - uses: input-output-hk/catalyst-ci/actions/run@master + uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.1.0 if: always() continue-on-error: true with: - earthfile: ./catalyst-gateway/tests/api_tests/ + earthfiles: ./catalyst-gateway/tests/api_tests/ + forge_version: 0.2.1 flags: --allow-privileged targets: test target_flags: From bbc3d1cbc24977bd797bcaaab4840cdda99a8559 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Thu, 17 Oct 2024 09:43:39 +0200 Subject: [PATCH 11/19] try 1 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70ad0b081b5..f1d56113fd1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,5 +21,5 @@ jobs: allure: needs: ci uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run - with: - forge_version: 0.2.1 +# with: +# forge_version: 0.2.1 From a4b8043e1ba66db6c366e18322af0bef05165482 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Thu, 17 Oct 2024 09:45:02 +0200 Subject: [PATCH 12/19] try 2 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1d56113fd1..afc9d5c831f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: forge_version: 0.2.1 allure: - needs: ci uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run + needs: ci # with: # forge_version: 0.2.1 From 33c54be768327e8a4bb94c7223f62e76901cc06a Mon Sep 17 00:00:00 2001 From: januszjanus Date: Thu, 17 Oct 2024 09:55:31 +0200 Subject: [PATCH 13/19] try 3 --- .github/workflows/ci.yml | 4 +- .github/workflows/generate-allure-report.yml | 41 -------------------- 2 files changed, 1 insertion(+), 44 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afc9d5c831f..cb681bdeac1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,5 @@ jobs: forge_version: 0.2.1 allure: - uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run needs: ci -# with: -# forge_version: 0.2.1 + uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run diff --git a/.github/workflows/generate-allure-report.yml b/.github/workflows/generate-allure-report.yml index e94f40a14ab..a990d608545 100644 --- a/.github/workflows/generate-allure-report.yml +++ b/.github/workflows/generate-allure-report.yml @@ -6,17 +6,6 @@ on: branches: "main" tags: ["*"] workflow_call: - inputs: - forge_version: - description: | - The version of the forge CLI to install (use 'local' for testing) - type: string - required: false - default: latest - secrets: - earthly_token: - description: Optional Earthly token used to login to Earthly cloud during local builds of Forge CLI - required: false permissions: contents: write @@ -44,36 +33,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install Forge - uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.0 - if: ${{ inputs.forge_version != 'local' }} - with: - version: ${{ inputs.forge_version }} - - - name: Install Local Forge - uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.0 - if: ${{ inputs.forge_version == 'local' }} - with: - earthly_token: ${{ secrets.earthly_token }} - - - name: Check forge version - id: local - run: | - forge version - - if [[ "${{ inputs.forge_version }}" == "local" ]]; then - echo "skip=true" >> $GITHUB_OUTPUT - else - echo "skip=false" >> $GITHUB_OUTPUT - fi - - - name: Setup CI - uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.0 - with: - skip_docker: 'true' - skip_github: 'true' - skip_earthly: ${{ steps.local.outputs.skip }} - - name: Get catalyst gateway unit test report uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.1.0 if: always() From 140be22166eb8f643deb9fdbfe1d364579309de4 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Thu, 17 Oct 2024 10:04:54 +0200 Subject: [PATCH 14/19] try 4 --- .github/workflows/generate-allure-report.yml | 45 ++++++-------------- 1 file changed, 13 insertions(+), 32 deletions(-) diff --git a/.github/workflows/generate-allure-report.yml b/.github/workflows/generate-allure-report.yml index a990d608545..7d0a0aefa9a 100644 --- a/.github/workflows/generate-allure-report.yml +++ b/.github/workflows/generate-allure-report.yml @@ -33,57 +33,38 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Setup CI + uses: input-output-hk/catalyst-forge/actions/setup@master + - name: Get catalyst gateway unit test report - uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.1.0 + uses: input-output-hk/catalyst-forge/actions/run@master if: always() continue-on-error: true with: - earthfiles: ./catalyst-gateway/ - forge_version: 0.2.1 - flags: - targets: build - target_flags: - runner_address: ${{ secrets.EARTHLY_SATELLITE_ADDRESS }} - artifact: "false" + path: ./catalyst-gateway+build - name: Get schemathesis test report - uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.1.0 + uses: input-output-hk/catalyst-forge/actions/run@master if: always() continue-on-error: true with: - earthfiles: ./catalyst-gateway/tests/schemathesis_tests - forge_version: 0.2.1 - flags: --allow-privileged - targets: test-fuzzer-api - target_flags: - runner_address: ${{ secrets.EARTHLY_SATELLITE_ADDRESS }} - artifact: "false" + path: ./catalyst-gateway/tests/schemathesis_tests+test-fuzzer-api + target_args: --allow-privileged - name: Get flutter unit test report - uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.1.0 + uses: input-output-hk/catalyst-forge/actions/run@master if: always() continue-on-error: true with: - earthfiles: ./catalyst_voices/ - forge_version: 0.2.1 - flags: - targets: test-unit - target_flags: - runner_address: ${{ secrets.EARTHLY_SATELLITE_ADDRESS }} - artifact: "false" + path: ./catalyst_voices+test-unit - name: Get python api test report - uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.1.0 + uses: input-output-hk/catalyst-forge/actions/run@master if: always() continue-on-error: true with: - earthfiles: ./catalyst-gateway/tests/api_tests/ - forge_version: 0.2.1 - flags: --allow-privileged - targets: test - target_flags: - runner_address: ${{ secrets.EARTHLY_SATELLITE_ADDRESS }} - artifact: "false" + path: ./catalyst-gateway/tests/api_tests+test + target_args: --allow-privileged - name: Collect and upload test reports uses: actions/upload-artifact@v4 From 7cce296adb36e3a6c0f782cdffe349f4da18acb8 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Thu, 17 Oct 2024 10:45:10 +0200 Subject: [PATCH 15/19] add forge install --- .github/workflows/generate-allure-report.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/generate-allure-report.yml b/.github/workflows/generate-allure-report.yml index 7d0a0aefa9a..97c3b73ca3b 100644 --- a/.github/workflows/generate-allure-report.yml +++ b/.github/workflows/generate-allure-report.yml @@ -6,6 +6,13 @@ on: branches: "main" tags: ["*"] workflow_call: + inputs: + forge_version: + description: | + The version of the forge CLI to install (use 'local' for testing) + type: string + required: false + default: latest permissions: contents: write @@ -33,6 +40,18 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install Forge + uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.0 + if: ${{ inputs.forge_version != 'local' }} + with: + version: ${{ inputs.forge_version }} + + - name: Install Local Forge + uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.0 + if: ${{ inputs.forge_version == 'local' }} + with: + earthly_token: ${{ secrets.earthly_token }} + - name: Setup CI uses: input-output-hk/catalyst-forge/actions/setup@master From d9d10e6cf40e4e57807643fb0b63cd80e6048ff4 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Thu, 17 Oct 2024 11:29:38 +0200 Subject: [PATCH 16/19] cleanup --- .github/workflows/ci.yml | 2 +- .github/workflows/generate-allure-report.yml | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb681bdeac1..8354ef057c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,4 +20,4 @@ jobs: allure: needs: ci - uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run + uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@main diff --git a/.github/workflows/generate-allure-report.yml b/.github/workflows/generate-allure-report.yml index 97c3b73ca3b..ce2e06b32e7 100644 --- a/.github/workflows/generate-allure-report.yml +++ b/.github/workflows/generate-allure-report.yml @@ -1,10 +1,6 @@ name: Allure Report Generation on: - pull_request: - push: - branches: "main" - tags: ["*"] workflow_call: inputs: forge_version: From c12ad7ca419c91472e8fe67ffb95e017a9ad59e9 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Thu, 17 Oct 2024 11:31:40 +0200 Subject: [PATCH 17/19] remove running allure after ci until allure flow changes are in main --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8354ef057c0..152e7837782 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,3 @@ jobs: uses: input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.1.0 with: forge_version: 0.2.1 - - allure: - needs: ci - uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@main From dabbe7e93ed060a97469d89df41e62bf1a4232b8 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Thu, 17 Oct 2024 12:04:49 +0200 Subject: [PATCH 18/19] remove local running option --- .github/workflows/generate-allure-report.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/generate-allure-report.yml b/.github/workflows/generate-allure-report.yml index ce2e06b32e7..885bca59955 100644 --- a/.github/workflows/generate-allure-report.yml +++ b/.github/workflows/generate-allure-report.yml @@ -2,13 +2,6 @@ name: Allure Report Generation on: workflow_call: - inputs: - forge_version: - description: | - The version of the forge CLI to install (use 'local' for testing) - type: string - required: false - default: latest permissions: contents: write @@ -38,15 +31,7 @@ jobs: - name: Install Forge uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.0 - if: ${{ inputs.forge_version != 'local' }} - with: - version: ${{ inputs.forge_version }} - - - name: Install Local Forge - uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.0 - if: ${{ inputs.forge_version == 'local' }} - with: - earthly_token: ${{ secrets.earthly_token }} + if: always() - name: Setup CI uses: input-output-hk/catalyst-forge/actions/setup@master From 8d2a58ae2f31237de134c67a24bd259b99db7862 Mon Sep 17 00:00:00 2001 From: januszjanus Date: Thu, 17 Oct 2024 12:38:07 +0200 Subject: [PATCH 19/19] remove unused vars --- .github/workflows/generate-allure-report.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/generate-allure-report.yml b/.github/workflows/generate-allure-report.yml index 885bca59955..ad9f4b5ca04 100644 --- a/.github/workflows/generate-allure-report.yml +++ b/.github/workflows/generate-allure-report.yml @@ -13,10 +13,6 @@ concurrency: cancel-in-progress: true env: - AWS_REGION: eu-central-1 - AWS_ROLE_ARN: arn:aws:iam::332405224602:role/ci - EARTHLY_TARGET: docker - ECR_REGISTRY: 332405224602.dkr.ecr.eu-central-1.amazonaws.com ALLURE_REPORT_PATH: allure-report COVERAGE_REPORT_PATH: coverage-report REPORT_EXT: .junit-report.xml