forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade geth to v1.9.14 (ethereum#75)
* fix: resolve conflict * chg: use bor url for import * Fix regressions from merge Co-authored-by: Jaynti Kanani <[email protected]>
- Loading branch information
1 parent
12ec141
commit c2ca66a
Showing
814 changed files
with
347,308 additions
and
68,994 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
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 |
---|---|---|
|
@@ -24,6 +24,7 @@ build/_vendor/pkg | |
|
||
# used by the Makefile | ||
/build/_workspace/ | ||
/build/cache/ | ||
/build/bin/ | ||
/geth*.zip | ||
|
||
|
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,50 @@ | ||
# This file configures github.com/golangci/golangci-lint. | ||
|
||
run: | ||
timeout: 2m | ||
tests: true | ||
# default is true. Enables skipping of directories: | ||
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$ | ||
skip-dirs-use-default: true | ||
skip-files: | ||
- core/genesis_alloc.go | ||
|
||
linters: | ||
disable-all: true | ||
enable: | ||
- deadcode | ||
- goconst | ||
- goimports | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- misspell | ||
# - staticcheck | ||
- unconvert | ||
# - unused | ||
- varcheck | ||
|
||
linters-settings: | ||
gofmt: | ||
simplify: true | ||
goconst: | ||
min-len: 3 # minimum length of string constant | ||
min-occurrences: 6 # minimum number of occurrences | ||
|
||
issues: | ||
exclude-rules: | ||
- path: crypto/blake2b/ | ||
linters: | ||
- deadcode | ||
- path: crypto/bn256/cloudflare | ||
linters: | ||
- deadcode | ||
- path: p2p/discv5/ | ||
linters: | ||
- deadcode | ||
- path: core/vm/instructions_test.go | ||
linters: | ||
- goconst | ||
- path: cmd/faucet/ | ||
linters: | ||
- deadcode |
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,32 +1,89 @@ | ||
language: go | ||
go_import_path: github.com/maticnetwork/bor | ||
sudo: false | ||
matrix: | ||
jobs: | ||
allow_failures: | ||
- stage: build | ||
os: osx | ||
go: 1.14.x | ||
env: | ||
- azure-osx | ||
- azure-ios | ||
- cocoapods-ios | ||
|
||
include: | ||
- os: linux | ||
# This builder only tests code linters on latest version of Go | ||
- stage: lint | ||
os: linux | ||
dist: xenial | ||
go: 1.10.x | ||
go: 1.14.x | ||
env: | ||
- lint | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
script: | ||
- go run build/ci.go install | ||
- go run build/ci.go test -coverage $TEST_PACKAGES | ||
- go run build/ci.go lint | ||
|
||
- os: linux | ||
- stage: build | ||
os: linux | ||
dist: xenial | ||
go: 1.11.x | ||
env: | ||
- GO111MODULE=on | ||
script: | ||
- go run build/ci.go install | ||
- go run build/ci.go test -coverage $TEST_PACKAGES | ||
|
||
# These are the latest Go versions. | ||
- os: linux | ||
- stage: build | ||
os: linux | ||
dist: xenial | ||
go: 1.12.x | ||
env: | ||
- GO111MODULE=on | ||
script: | ||
- go run build/ci.go install | ||
- go run build/ci.go test -coverage $TEST_PACKAGES | ||
|
||
- os: osx | ||
go: 1.12.x | ||
- stage: build | ||
os: linux | ||
dist: xenial | ||
go: 1.13.x | ||
env: | ||
- GO111MODULE=on | ||
script: | ||
- go run build/ci.go install | ||
- go run build/ci.go test -coverage $TEST_PACKAGES | ||
|
||
# These are the latest Go versions. | ||
- stage: build | ||
os: linux | ||
arch: amd64 | ||
dist: xenial | ||
go: 1.14.x | ||
env: | ||
- GO111MODULE=on | ||
script: | ||
- go run build/ci.go install | ||
- go run build/ci.go test -coverage $TEST_PACKAGES | ||
|
||
- stage: build | ||
if: type = pull_request | ||
os: linux | ||
arch: arm64 | ||
dist: xenial | ||
go: 1.14.x | ||
env: | ||
- GO111MODULE=on | ||
script: | ||
- go run build/ci.go install | ||
- go run build/ci.go test -coverage $TEST_PACKAGES | ||
|
||
- stage: build | ||
os: osx | ||
osx_image: xcode11.3 | ||
go: 1.14.x | ||
env: | ||
- GO111MODULE=on | ||
script: | ||
- echo "Increase the maximum number of open file descriptors on macOS" | ||
- NOFILE=20480 | ||
|
@@ -40,24 +97,15 @@ matrix: | |
- go run build/ci.go install | ||
- go run build/ci.go test -coverage $TEST_PACKAGES | ||
|
||
# This builder only tests code linters on latest version of Go | ||
- os: linux | ||
dist: xenial | ||
go: 1.12.x | ||
env: | ||
- lint | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
script: | ||
- go run build/ci.go lint | ||
|
||
# This builder does the Ubuntu PPA upload | ||
- if: type = push | ||
- stage: build | ||
if: type = push | ||
os: linux | ||
dist: xenial | ||
go: 1.12.x | ||
go: 1.14.x | ||
env: | ||
- ubuntu-ppa | ||
- GO111MODULE=on | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
addons: | ||
|
@@ -71,16 +119,18 @@ matrix: | |
- python-paramiko | ||
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]>" | ||
- go run build/ci.go debsrc -goversion 1.14.2 -upload ethereum/ethereum -sftp-user geth-ci -signer "Go Ethereum Linux Builder <[email protected]>" | ||
|
||
# This builder does the Linux Azure uploads | ||
- if: type = push | ||
- stage: build | ||
if: type = push | ||
os: linux | ||
dist: xenial | ||
sudo: required | ||
go: 1.12.x | ||
go: 1.14.x | ||
env: | ||
- azure-linux | ||
- GO111MODULE=on | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
addons: | ||
|
@@ -108,14 +158,16 @@ matrix: | |
- go run build/ci.go archive -arch arm64 -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds | ||
|
||
# This builder does the Linux Azure MIPS xgo uploads | ||
- if: type = push | ||
- stage: build | ||
if: type = push | ||
os: linux | ||
dist: xenial | ||
services: | ||
- docker | ||
go: 1.12.x | ||
go: 1.14.x | ||
env: | ||
- azure-linux-mips | ||
- GO111MODULE=on | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
script: | ||
|
@@ -136,7 +188,8 @@ matrix: | |
- go run build/ci.go archive -arch mips64le -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds | ||
|
||
# This builder does the Android Maven and Azure uploads | ||
- if: type = push | ||
- stage: build | ||
if: type = push | ||
os: linux | ||
dist: xenial | ||
addons: | ||
|
@@ -155,10 +208,11 @@ matrix: | |
env: | ||
- azure-android | ||
- maven-android | ||
- GO111MODULE=on | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
before_install: | ||
- curl https://dl.google.com/go/go1.12.linux-amd64.tar.gz | tar -xz | ||
- curl https://dl.google.com/go/go1.14.2.linux-amd64.tar.gz | tar -xz | ||
- export PATH=`pwd`/go/bin:$PATH | ||
- export GOROOT=`pwd`/go | ||
- export GOPATH=$HOME/go | ||
|
@@ -173,13 +227,15 @@ matrix: | |
- go run build/ci.go aar -signer ANDROID_SIGNING_KEY -deploy https://oss.sonatype.org -upload gethstore/builds | ||
|
||
# This builder does the OSX Azure, iOS CocoaPods and iOS Azure uploads | ||
- if: type = push | ||
- stage: build | ||
if: type = push | ||
os: osx | ||
go: 1.12.x | ||
go: 1.14.x | ||
env: | ||
- azure-osx | ||
- azure-ios | ||
- cocoapods-ios | ||
- GO111MODULE=on | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
script: | ||
|
@@ -202,12 +258,14 @@ matrix: | |
- go run build/ci.go xcode -signer IOS_SIGNING_KEY -deploy trunk -upload gethstore/builds | ||
|
||
# This builder does the Azure archive purges to avoid accumulating junk | ||
- if: type = cron | ||
- stage: build | ||
if: type = cron | ||
os: linux | ||
dist: xenial | ||
go: 1.12.x | ||
go: 1.14.x | ||
env: | ||
- azure-purge | ||
- GO111MODULE=on | ||
git: | ||
submodules: false # avoid cloning ethereum/tests | ||
script: | ||
|
Oops, something went wrong.