From 9539bb01603ff6256d1a0e81a97dcd68c7641325 Mon Sep 17 00:00:00 2001 From: jeanmon Date: Thu, 19 Dec 2024 15:03:11 +0000 Subject: [PATCH 1/2] Set GITHUB_RUN_URL in github action config of AVM full tests --- .github/workflows/vm_full_tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/vm_full_tests.yml b/.github/workflows/vm_full_tests.yml index cfd832b4469..728e489a3dc 100644 --- a/.github/workflows/vm_full_tests.yml +++ b/.github/workflows/vm_full_tests.yml @@ -24,6 +24,7 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} BUILD_INSTANCE_SSH_KEY: ${{ secrets.BUILD_INSTANCE_SSH_KEY }} + GITHUB_RUN_URL: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" GIT_COMMIT: ${{ github.sha }} steps: - uses: actions/checkout@v4 From e13b3295b57d55b5b69d793d98b240a898214702 Mon Sep 17 00:00:00 2001 From: jeanmon Date: Thu, 19 Dec 2024 15:53:56 +0000 Subject: [PATCH 2/2] Adapt path in invocation of earthly-ci --- .github/workflows/vm_full_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vm_full_tests.yml b/.github/workflows/vm_full_tests.yml index 728e489a3dc..a237aff696d 100644 --- a/.github/workflows/vm_full_tests.yml +++ b/.github/workflows/vm_full_tests.yml @@ -35,4 +35,4 @@ jobs: with: run: | sudo shutdown -P 75 # hack until core part of the scripts - earthly-ci --no-output ./barretenberg/cpp/+vm-full-test --hardware_concurrency=64 # limit our parallelism to half our cores + scripts/earthly-ci --no-output ./barretenberg/cpp/+vm-full-test --hardware_concurrency=64 # limit our parallelism to half our cores