-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into tmp_blob_sidecars_pro…
…of_fieldname
- Loading branch information
Showing
867 changed files
with
52,071 additions
and
34,237 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Check | |
on: | ||
push: | ||
branches: | ||
- devel | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
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 | ||
|
||
jobs: | ||
check-snap-modifications: | ||
runs-on: ubuntu-22.04 | ||
outputs: | ||
modified: ${{ steps.check-modified.outputs.modified }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 2 # Ensures we fetch enough history to compare | ||
|
||
- name: Is ledgerwatch/erigon-snapshot updated in go.mod # if not, pipeline should exit beacuse grep exit code >0 when no match | ||
run: | | ||
git diff HEAD~1 HEAD -- go.mod | grep 'github.com/ledgerwatch/erigon-snapshot' | ||
# ManifestCheck: | ||
# needs: check-snap-modifications | ||
# if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | ||
# strategy: | ||
# matrix: | ||
# os: | ||
# - ubuntu-22.04 | ||
# runs-on: ${{ matrix.os }} | ||
# | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: actions/setup-go@v4 | ||
# with: | ||
# go-version: '1.21' | ||
# - name: Install dependencies on Linux | ||
# if: runner.os == 'Linux' | ||
# run: sudo apt update && sudo apt install build-essential | ||
# | ||
# - name: Build | ||
# run: make downloader | ||
# | ||
# - name: mainnet webseeds | ||
# run: | | ||
# echo $ModModified | ||
# ./build/bin/downloader manifest-verify --chain mainnet | ||
# | ||
# - name: bor-mainnet webseeds | ||
# run: | | ||
# ./build/bin/downloader manifest-verify --chain bor-mainnet | ||
# | ||
# - name: gnosis webseeds | ||
# run: | | ||
# ./build/bin/downloader manifest-verify --chain gnosis | ||
# | ||
# - name: mumbai webseeds | ||
# run: | | ||
# ./build/bin/downloader manifest-verify --chain mumbai | ||
# | ||
# - name: sepolia webseeds | ||
# run: | | ||
# ./build/bin/downloader manifest-verify --chain sepolia | ||
# | ||
# - name: chiado webseeds | ||
# run: | | ||
# ./build/bin/downloader manifest-verify --chain chiado | ||
# | ||
# - name: amoy webseeds | ||
# run: | | ||
# ./build/bin/downloader manifest-verify --chain amoy |
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
Oops, something went wrong.