Skip to content

Commit

Permalink
chore: run kind smoke when helm charts are touched (#11667)
Browse files Browse the repository at this point in the history
  • Loading branch information
just-mitch authored Jan 31, 2025
1 parent f4e2953 commit ab8b5db
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
yarn-project: ${{ steps.filter.outputs.yarn-project }}
non-docs: ${{ steps.filter.outputs.non-docs }}
non-bb: ${{ steps.filter.outputs.non-bb }}
helm-charts: ${{ steps.filter.outputs.helm-charts }}
# Test flags:
e2e-all: ${{ github.ref_name == 'master' || contains(github.event.pull_request.labels.*.name, 'e2e-all') || github.event_name == 'merge_group' }}
network-all: ${{ github.ref_name == 'master' || contains(github.event.pull_request.labels.*.name, 'network-all') }}
Expand Down Expand Up @@ -102,6 +103,8 @@ jobs:
- 'noir-projects/**'
yarn-project:
- 'yarn-project/**'
helm-charts:
- 'spartan/**'
non-bb:
- '!(barretenberg/cpp/**)'
# don't consider AVM stuff 'core bb'
Expand Down Expand Up @@ -363,7 +366,7 @@ jobs:
kind-network-smoke:
needs: [images-e2e, configure]
if: needs.configure.outputs.e2e-all == 'true' || needs.configure.outputs.yarn-project == 'true'
if: needs.configure.outputs.e2e-all == 'true' || needs.configure.outputs.yarn-project == 'true' || needs.configure.outputs.helm-charts == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit ab8b5db

Please sign in to comment.