cherry-pick: add selector for trusted sync to prevent from executing from an old trusted node from v0.6.0 (#3336) #6956
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Test non-e2e | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- develop | |
- update-external-dependencies | |
- 'release/**' | |
pull_request: | |
jobs: | |
test-full-non-e2e: | |
strategy: | |
matrix: | |
go-version: [ 1.21.x ] | |
goarch: [ "amd64" ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
env: | |
GOARCH: ${{ matrix.goarch }} | |
- name: Compile SCs | |
run: make compile-scs | |
working-directory: test | |
- name: Test | |
env: | |
ZKPROVER_URI: 127.0.0.1 | |
run: make test-full-non-e2e | |
working-directory: test |