Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: disable earthly cloud #5639

Merged
merged 1 commit into from
Apr 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
Loading