Skip to content

Commit

Permalink
Revert "try to fix kind test runner"
Browse files Browse the repository at this point in the history
This reverts commit 66328f0.
  • Loading branch information
Maddiaa0 committed Nov 22, 2024
1 parent 36dd9d5 commit 2620c83
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ jobs:
outputs:
username: ${{ steps.compute_username.outputs.username }}
avm-transpiler: ${{ steps.filter.outputs.avm-transpiler }}
aztec-network: ${{ steps.filter.outputs.aztec-network }}
build-images: ${{ steps.filter.outputs.build-images }}
barretenberg: ${{ steps.filter.outputs.barretenberg }}
barretenberg-cpp: ${{ steps.filter.outputs.barretenberg-cpp }}
Expand Down Expand Up @@ -91,8 +90,6 @@ jobs:
- 'build-images/**'
noir:
- 'noir/**'
aztec-network:
- 'aztec-network/**'
avm-transpiler:
- 'avm-transpiler/**'
l1-contracts:
Expand Down Expand Up @@ -664,7 +661,7 @@ jobs:

kind-smoke-test:
needs: [build, configure]
if: needs.configure.outputs.aztec-network == 'true' || needs.configure.outputs.yarn-project == 'true' || github.ref_name == 'master'
if: needs.configure.outputs.yarn-project == 'true' || github.ref_name == 'master'
runs-on: ${{ needs.configure.outputs.username }}-x86
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -695,8 +692,8 @@ jobs:
# note: proving disabled
kind-network-test:
needs: [build, configure]
if: contains(github.event.pull_request.labels.*.name, 'network-all') || needs.configure.outputs.aztec-network == 'true' || needs.configure.outputs.yarn-project == 'true' || github.ref_name == 'master'
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'network-all') || (needs.configure.outputs.yarn-project == 'true' && github.ref_name == 'master')
runs-on: ${{ needs.configure.outputs.username }}-x86
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 2620c83

Please sign in to comment.