From cfb9023e55c72de86e2a733fc2c5aa1c08723224 Mon Sep 17 00:00:00 2001 From: ludamad Date: Fri, 3 May 2024 14:10:57 -0400 Subject: [PATCH 1/2] chore(ci): improve dependency structure This makes less things happen in parallel when they would just wait for one another (making it hard to find logs) --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 369074f09b9c..0f3b9565ec70 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,7 +109,7 @@ jobs: # barretenberg (prover) native and AVM (public VM) tests # only ran on x86 for resource reasons (memory intensive) bb-native-tests: - needs: setup + needs: build runs-on: ${{ inputs.username || github.actor }}-x86 steps: - { @@ -162,7 +162,7 @@ jobs: run: earthly-ci --no-output ./noir-projects/+test yarn-project-formatting: - needs: setup + needs: noir-projects runs-on: ${{ github.actor }}-x86 steps: - { @@ -279,7 +279,7 @@ jobs: run: earthly-ci --no-output ./+barretenberg-acir-tests-bb.js docs-preview: - needs: setup + needs: build runs-on: ${{ inputs.username || github.actor }}-x86 if: github.event.number steps: From 9f1248dec19c0b9f39c72bc373c08ef43207e2f5 Mon Sep 17 00:00:00 2001 From: ludamad Date: Fri, 3 May 2024 14:11:45 -0400 Subject: [PATCH 2/2] Update ci.yml --- .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 0f3b9565ec70..ad0e789d6ca9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,7 +109,7 @@ jobs: # barretenberg (prover) native and AVM (public VM) tests # only ran on x86 for resource reasons (memory intensive) bb-native-tests: - needs: build + needs: setup runs-on: ${{ inputs.username || github.actor }}-x86 steps: - {