mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-15 00:13:46 +00:00
Merge branch 'ethereum:master' into portal
This commit is contained in:
commit
949cb00795
2 changed files with 6 additions and 2 deletions
|
|
@ -97,6 +97,7 @@ jobs:
|
||||||
|
|
||||||
# These builders run the tests
|
# These builders run the tests
|
||||||
- stage: build
|
- stage: build
|
||||||
|
if: type = push
|
||||||
os: linux
|
os: linux
|
||||||
arch: amd64
|
arch: amd64
|
||||||
dist: noble
|
dist: noble
|
||||||
|
|
@ -105,6 +106,7 @@ jobs:
|
||||||
- travis_wait 45 go run build/ci.go test $TEST_PACKAGES
|
- travis_wait 45 go run build/ci.go test $TEST_PACKAGES
|
||||||
|
|
||||||
- stage: build
|
- stage: build
|
||||||
|
if: type = push
|
||||||
os: linux
|
os: linux
|
||||||
dist: noble
|
dist: noble
|
||||||
go: 1.21.x
|
go: 1.21.x
|
||||||
|
|
@ -146,5 +148,7 @@ jobs:
|
||||||
os: linux
|
os: linux
|
||||||
dist: noble
|
dist: noble
|
||||||
go: 1.22.x
|
go: 1.22.x
|
||||||
|
env:
|
||||||
|
- racetests
|
||||||
script:
|
script:
|
||||||
- travis_wait 50 go run build/ci.go test -race $TEST_PACKAGES
|
- travis_wait 60 go run build/ci.go test -race $TEST_PACKAGES
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ import (
|
||||||
const (
|
const (
|
||||||
VersionMajor = 1 // Major version component of the current release
|
VersionMajor = 1 // Major version component of the current release
|
||||||
VersionMinor = 14 // Minor version component of the current release
|
VersionMinor = 14 // Minor version component of the current release
|
||||||
VersionPatch = 3 // Patch version component of the current release
|
VersionPatch = 4 // Patch version component of the current release
|
||||||
VersionMeta = "unstable" // Version metadata to append to the version string
|
VersionMeta = "unstable" // Version metadata to append to the version string
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue