polygon: delete the Polygon tree, tables, protos and chain-config hoo… #3394
This file contains hidden or 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: Manifest Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'release/**' | |
| paths: | |
| - 'go.mod' | |
| pull_request: | |
| branches: | |
| - main | |
| - 'release/**' | |
| paths: | |
| - 'go.mod' | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| ManifestCheck: | |
| # != true rather than == false: outside a pull_request event, | |
| # github.event.pull_request.draft is '' (empty string). GA expressions | |
| # have no type coercion, so '' == false is false and would skip the job | |
| # on merge_group and push events. '' != true is true, so the job runs. | |
| if: github.event.pull_request.draft != true | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| persist-credentials: false | |
| - name: Get Go version from go.mod | |
| id: goversion | |
| run: | | |
| minor=$(sed -n 's/^go \([0-9]*\.[0-9]*\).*/\1/p' go.mod) | |
| echo "version=${minor}.x" >> "$GITHUB_OUTPUT" | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version: ${{ steps.goversion.outputs.version }} | |
| cache: false | |
| - run: make downloader | |
| - run: echo $ModModified | |
| - run: ./build/bin/downloader manifest-verify --chain mainnet --webseed 'https://erigon34-v1-snapshots-mainnet.erigon.network' | |
| - run: ./build/bin/downloader manifest-verify --chain gnosis --webseed 'https://erigon34-v1-snapshots-gnosis.erigon.network' | |
| - run: ./build/bin/downloader manifest-verify --chain chiado --webseed 'https://erigon34-v1-snapshots-chiado.erigon.network' | |
| - run: ./build/bin/downloader manifest-verify --chain sepolia --webseed 'https://erigon34-v1-snapshots-sepolia.erigon.network' | |
| - run: ./build/bin/downloader manifest-verify --chain hoodi --webseed 'https://erigon34-v1-snapshots-hoodi.erigon.network' |