forked from ethereum-optimism/op-geth
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # cmd/geth/config.go # cmd/geth/main.go # cmd/utils/flags.go # core/genesis.go # core/vm/contracts.go # core/vm/evm.go # eth/backend.go # eth/ethconfig/config.go # eth/ethconfig/gen_config.go # go.sum # params/config.go
- Loading branch information
Showing
857 changed files
with
43,150 additions
and
40,856 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* @ethereum-optimism/op-geth-maintainers | ||
* @ethereum-optimism/op-geth-maintainers |
Empty file.
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 |
---|---|---|
|
@@ -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,14 +9,13 @@ jobs: | |
- azure-osx | ||
|
||
include: | ||
# 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 | ||
# This builder create and push the Docker images for all architectures | ||
- stage: build | ||
if: type = push | ||
os: linux | ||
arch: amd64 | ||
dist: bionic | ||
go: 1.21.x | ||
dist: focal | ||
go: 1.23.x | ||
env: | ||
- docker | ||
services: | ||
|
@@ -26,44 +25,27 @@ jobs: | |
before_install: | ||
- export DOCKER_CLI_EXPERIMENTAL=enabled | ||
script: | ||
- go run build/ci.go docker -image -manifest amd64,arm64 -upload ethereum/client-go | ||
|
||
- stage: build | ||
if: type = push | ||
os: linux | ||
arch: arm64 | ||
dist: bionic | ||
go: 1.21.x | ||
env: | ||
- docker | ||
services: | ||
- docker | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
before_install: | ||
- export DOCKER_CLI_EXPERIMENTAL=enabled | ||
script: | ||
- go run build/ci.go docker -image -manifest amd64,arm64 -upload ethereum/client-go | ||
- go run build/ci.go dockerx -platform "linux/amd64,linux/arm64" -upload ethereum/client-go | ||
|
||
# This builder does the Linux Azure uploads | ||
- stage: build | ||
if: type = push | ||
os: linux | ||
dist: bionic | ||
dist: focal | ||
sudo: required | ||
go: 1.21.x | ||
go: 1.23.x | ||
env: | ||
- azure-linux | ||
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 | ||
- git status --porcelain | ||
- 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 | ||
|
||
|
@@ -85,61 +67,48 @@ jobs: | |
if: type = push | ||
os: osx | ||
osx_image: xcode14.2 | ||
go: 1.21.x | ||
go: 1.23.1 # See https://github.com/ethereum/go-ethereum/pull/30478 | ||
env: | ||
- azure-osx | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
script: | ||
- ln -sf /Users/travis/gopath/bin/go1.23.1 /usr/local/bin/go # Work around travis go-setup bug | ||
- 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.21.x | ||
dist: focal | ||
go: 1.23.x | ||
script: | ||
- travis_wait 30 go run build/ci.go test $TEST_PACKAGES | ||
|
||
- stage: build | ||
if: type = pull_request | ||
os: linux | ||
arch: arm64 | ||
dist: bionic | ||
go: 1.20.x | ||
script: | ||
- travis_wait 30 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.20.x | ||
dist: focal | ||
go: 1.22.x | ||
script: | ||
- travis_wait 30 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.21.x | ||
dist: focal | ||
go: 1.23.x | ||
env: | ||
- ubuntu-ppa | ||
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]>" | ||
|
@@ -148,8 +117,8 @@ jobs: | |
- stage: build | ||
if: type = cron | ||
os: linux | ||
dist: bionic | ||
go: 1.21.x | ||
dist: focal | ||
go: 1.23.x | ||
env: | ||
- azure-purge | ||
git: | ||
|
@@ -161,8 +130,9 @@ jobs: | |
- stage: build | ||
if: type = cron | ||
os: linux | ||
dist: bionic | ||
go: 1.21.x | ||
dist: focal | ||
go: 1.23.x | ||
env: | ||
- racetests | ||
script: | ||
- travis_wait 30 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.