Skip to content

Commit

Permalink
Bypass "lock is currently held by..." so I can test bench summary fast
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Apr 30, 2024
1 parent 8564d7a commit 5ad7dfb
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
secrets: inherit

build:
if: false
needs: setup
runs-on: ${{ inputs.username || github.actor }}-x86
outputs:
Expand All @@ -59,6 +60,7 @@ jobs:

# all the end-to-end integration tests for aztec
e2e:
if: false
needs: build
runs-on: ${{ inputs.username || github.actor }}-x86
strategy:
Expand Down Expand Up @@ -107,6 +109,7 @@ jobs:
# barretenberg (prover) native and AVM (public VM) tests
# only ran on x86 for resource reasons (memory intensive)
bb-native-tests:
if: false
needs: setup
runs-on: ${{ inputs.username || github.actor }}-x86
steps:
Expand All @@ -127,6 +130,7 @@ jobs:
run: earthly-ci --no-output +test --hardware_concurrency=64

noir-projects:
if: false
needs: setup
runs-on: ${{ inputs.username || github.actor }}-x86
steps:
Expand All @@ -143,6 +147,7 @@ jobs:
run: earthly-ci --no-output ./noir-projects/+test

yarn-project-formatting:
if: false
needs: setup
runs-on: ${{ github.actor }}-x86
steps:
Expand All @@ -160,6 +165,7 @@ jobs:
run: earthly-ci --no-output ./yarn-project/+format-check

yarn-project-test:
if: false
needs: noir-projects
runs-on: ${{ github.actor }}-x86
steps:
Expand All @@ -177,6 +183,7 @@ jobs:
run: earthly-ci --no-output ./yarn-project/+test

docs-preview:
if: false
needs: setup
runs-on: ${{ inputs.username || github.actor }}-x86
steps:
Expand All @@ -194,6 +201,7 @@ jobs:

# push benchmarking binaries to dockerhub registry
bb-bench-binaries:
if: false
needs: setup
runs-on: ${{ inputs.username || github.actor }}-x86
steps:
Expand All @@ -211,6 +219,7 @@ jobs:
run: earthly-ci --push +bench-binaries

setup-bench:
if: false
uses: ./.github/workflows/setup-runner.yml
needs: bb-bench-binaries
with:
Expand All @@ -224,6 +233,7 @@ jobs:
secrets: inherit

bb-bench:
if: false
runs-on: ${{ inputs.username || github.actor }}-bench-x86
needs: setup-bench
steps:
Expand Down Expand Up @@ -254,7 +264,8 @@ jobs:
- bb-bench
- yarn-project-formatting
- yarn-project-test
if: always()
# if: always()
if: false
steps:
- run: |
echo "e2e status: ${{ needs.e2e.result }}"
Expand All @@ -278,7 +289,8 @@ jobs:
yarn-project-test,
]
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' && failure() }}
# if: ${{ github.ref == 'refs/heads/master' && failure() }}
if: false
steps:
- name: Send notification to aztec3-ci channel if workflow failed on master
uses: slackapi/slack-github-action@v1.25.0
Expand Down

0 comments on commit 5ad7dfb

Please sign in to comment.