forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from jorgemmsilva/upd
chore: update go-ethereum
- Loading branch information
Showing
1,236 changed files
with
102,208 additions
and
94,895 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,24 @@ | ||
name: i386 linux tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: self-hosted | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.21.4 | ||
cache: false | ||
- name: Run tests | ||
run: go test -short ./... | ||
env: | ||
GOOS: linux | ||
GOARCH: 386 |
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 |
---|---|---|
|
@@ -47,4 +47,6 @@ profile.cov | |
/dashboard/assets/package-lock.json | ||
|
||
**/yarn-error.log | ||
logs/ | ||
logs/ | ||
|
||
tests/spec-tests/ |
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 |
---|---|---|
|
@@ -56,7 +56,6 @@ Diederik Loerakker <[email protected]> | |
Dimitry Khokhlov <[email protected]> | ||
|
||
Domino Valdano <[email protected]> | ||
Domino Valdano <[email protected]> <[email protected]> | ||
|
||
Edgar Aroutiounian <[email protected]> | ||
|
||
|
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 |
---|---|---|
|
@@ -9,26 +9,14 @@ jobs: | |
- azure-osx | ||
|
||
include: | ||
# This builder only tests code linters on latest version of Go | ||
- stage: lint | ||
os: linux | ||
dist: bionic | ||
go: 1.20.x | ||
env: | ||
- lint | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
script: | ||
- go run build/ci.go lint | ||
|
||
# These builders create the Docker sub-images for multi-arch push and each | ||
# will attempt to push the multi-arch image if they are the last builder | ||
- stage: build | ||
if: type = push | ||
os: linux | ||
arch: amd64 | ||
dist: bionic | ||
go: 1.20.x | ||
dist: noble | ||
go: 1.22.x | ||
env: | ||
- docker | ||
services: | ||
|
@@ -44,8 +32,8 @@ jobs: | |
if: type = push | ||
os: linux | ||
arch: arm64 | ||
dist: bionic | ||
go: 1.20.x | ||
dist: noble | ||
go: 1.22.x | ||
env: | ||
- docker | ||
services: | ||
|
@@ -61,22 +49,20 @@ jobs: | |
- stage: build | ||
if: type = push | ||
os: linux | ||
dist: bionic | ||
dist: noble | ||
sudo: required | ||
go: 1.20.x | ||
go: 1.22.x | ||
env: | ||
- azure-linux | ||
- GO111MODULE=on | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
addons: | ||
apt: | ||
packages: | ||
- gcc-multilib | ||
script: | ||
# Build for the primary platforms that Trusty can manage | ||
# build amd64 | ||
- go run build/ci.go install -dlgo | ||
- go run build/ci.go archive -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds | ||
|
||
# build 386 | ||
- sudo -E apt-get -yq --no-install-suggests --no-install-recommends install gcc-multilib | ||
- go run build/ci.go install -dlgo -arch 386 | ||
- go run build/ci.go archive -arch 386 -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds | ||
|
||
|
@@ -97,67 +83,48 @@ jobs: | |
- stage: build | ||
if: type = push | ||
os: osx | ||
go: 1.20.x | ||
osx_image: xcode14.2 | ||
go: 1.22.x | ||
env: | ||
- azure-osx | ||
- GO111MODULE=on | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
script: | ||
- go run build/ci.go install -dlgo | ||
- go run build/ci.go archive -type tar -signer OSX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds | ||
- go run build/ci.go install -dlgo -arch arm64 | ||
- go run build/ci.go archive -arch arm64 -type tar -signer OSX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds | ||
|
||
# These builders run the tests | ||
- stage: build | ||
if: type = push | ||
os: linux | ||
arch: amd64 | ||
dist: bionic | ||
go: 1.20.x | ||
env: | ||
- GO111MODULE=on | ||
dist: noble | ||
go: 1.22.x | ||
script: | ||
- go run build/ci.go test $TEST_PACKAGES | ||
|
||
- stage: build | ||
if: type = pull_request | ||
os: linux | ||
arch: arm64 | ||
dist: bionic | ||
go: 1.19.x | ||
env: | ||
- GO111MODULE=on | ||
script: | ||
- go run build/ci.go test $TEST_PACKAGES | ||
- travis_wait 45 go run build/ci.go test $TEST_PACKAGES | ||
|
||
- stage: build | ||
if: type = push | ||
os: linux | ||
dist: bionic | ||
go: 1.19.x | ||
env: | ||
- GO111MODULE=on | ||
dist: noble | ||
go: 1.21.x | ||
script: | ||
- go run build/ci.go test $TEST_PACKAGES | ||
- travis_wait 45 go run build/ci.go test $TEST_PACKAGES | ||
|
||
# This builder does the Ubuntu PPA nightly uploads | ||
- stage: build | ||
if: type = cron || (type = push && tag ~= /^v[0-9]/) | ||
os: linux | ||
dist: bionic | ||
go: 1.20.x | ||
dist: noble | ||
go: 1.22.x | ||
env: | ||
- ubuntu-ppa | ||
- GO111MODULE=on | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
addons: | ||
apt: | ||
packages: | ||
- devscripts | ||
- debhelper | ||
- dput | ||
- fakeroot | ||
- python-bzrlib | ||
- python-paramiko | ||
before_install: | ||
- sudo -E apt-get -yq --no-install-suggests --no-install-recommends install devscripts debhelper dput fakeroot | ||
script: | ||
- echo '|1|7SiYPr9xl3uctzovOTj4gMwAC1M=|t6ReES75Bo/PxlOPJ6/GsGbTrM0= ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA0aKz5UTUndYgIGG7dQBV+HaeuEZJ2xPHo2DS2iSKvUL4xNMSAY4UguNW+pX56nAQmZKIZZ8MaEvSj6zMEDiq6HFfn5JcTlM80UwlnyKe8B8p7Nk06PPQLrnmQt5fh0HmEcZx+JU9TZsfCHPnX7MNz4ELfZE6cFsclClrKim3BHUIGq//t93DllB+h4O9LHjEUsQ1Sr63irDLSutkLJD6RXchjROXkNirlcNVHH/jwLWR5RcYilNX7S5bIkK8NlWPjsn/8Ua5O7I9/YoE97PpO6i73DTGLh5H9JN/SITwCKBkgSDWUt61uPK3Y11Gty7o2lWsBjhBUm2Y38CBsoGmBw==' >> ~/.ssh/known_hosts | ||
- go run build/ci.go debsrc -upload ethereum/ethereum -sftp-user geth-ci -signer "Go Ethereum Linux Builder <[email protected]>" | ||
|
@@ -166,11 +133,10 @@ jobs: | |
- stage: build | ||
if: type = cron | ||
os: linux | ||
dist: bionic | ||
go: 1.20.x | ||
dist: noble | ||
go: 1.22.x | ||
env: | ||
- azure-purge | ||
- GO111MODULE=on | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
script: | ||
|
@@ -180,10 +146,9 @@ jobs: | |
- stage: build | ||
if: type = cron | ||
os: linux | ||
dist: bionic | ||
go: 1.20.x | ||
dist: noble | ||
go: 1.22.x | ||
env: | ||
- GO111MODULE=on | ||
- racetests | ||
script: | ||
- go run build/ci.go test -race $TEST_PACKAGES | ||
|
||
- travis_wait 60 go run build/ci.go test -race $TEST_PACKAGES |
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
Oops, something went wrong.