From 8ca8bfb8e0dc08c0dca1c61436b05b7680968e8d Mon Sep 17 00:00:00 2001 From: ludamad Date: Tue, 9 Apr 2024 11:34:00 -0400 Subject: [PATCH] chore: disable earthly cloud Earthly cloud proved too expensive + we have another scheme coming. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b282d649ee79..44d9255664f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,7 @@ on: jobs: # there's a lot of x86 tasks - let's split out the build step build-x86: + if: github.actor == 'ludamad' || github.actor == 'charlielye' runs-on: ubuntu-latest outputs: e2e_list: ${{ steps.e2e_list.outputs.list }} @@ -45,6 +46,7 @@ jobs: # all the end-to-end integration tests for aztec e2e-arm: runs-on: ubuntu-latest + if: github.actor == 'ludamad' || github.actor == 'charlielye' env: EARTHLY_TOKEN: ${{ secrets.EARTHLY_TOKEN }} strategy: @@ -82,6 +84,7 @@ jobs: e2e-x86: needs: build-x86 runs-on: ubuntu-latest + if: github.actor == 'ludamad' || github.actor == 'charlielye' env: EARTHLY_TOKEN: ${{ secrets.EARTHLY_TOKEN }} strategy: @@ -122,6 +125,7 @@ jobs: # barretenberg (prover) native tests bb-native-tests: runs-on: ubuntu-latest + if: github.actor == 'ludamad' || github.actor == 'charlielye' env: EARTHLY_TOKEN: ${{ secrets.EARTHLY_TOKEN }} strategy: @@ -158,6 +162,7 @@ jobs: # We don't depend on 'build' as we use a different runner and will build components on the fist step that uses them. bench: runs-on: ubuntu-latest + if: github.actor == 'ludamad' || github.actor == 'charlielye' env: EARTHLY_TOKEN: ${{ secrets.EARTHLY_TOKEN }} # cancel if reran on same PR if exists, otherwise if on same commit