Skip to content

Commit dac54e3

Browse files
authored
build, internal, version: break ci.go/version->common dependency (ethereum#30638)
This PR tries to break the ci.go to common dependency by moving the version number out of params.
1 parent 5c3b792 commit dac54e3

File tree

12 files changed

+110
-114
lines changed

12 files changed

+110
-114
lines changed

build/ci.go

+11-11
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ import (
5656
"github.com/cespare/cp"
5757
"github.com/ethereum/go-ethereum/crypto/signify"
5858
"github.com/ethereum/go-ethereum/internal/build"
59-
"github.com/ethereum/go-ethereum/params"
59+
"github.com/ethereum/go-ethereum/internal/version"
6060
)
6161

6262
var (
@@ -108,7 +108,7 @@ var (
108108
// A debian package is created for all executables listed here.
109109
debEthereum = debPackage{
110110
Name: "ethereum",
111-
Version: params.Version,
111+
Version: version.Semantic,
112112
Executables: debExecutables,
113113
}
114114

@@ -631,7 +631,7 @@ func doArchive(cmdline []string) {
631631

632632
var (
633633
env = build.Env()
634-
basegeth = archiveBasename(*arch, params.ArchiveVersion(env.Commit))
634+
basegeth = archiveBasename(*arch, version.Archive(env.Commit))
635635
geth = "geth-" + basegeth + ext
636636
alltools = "geth-alltools-" + basegeth + ext
637637
)
@@ -751,7 +751,7 @@ func doDockerBuildx(cmdline []string) {
751751
case env.Branch == "master":
752752
tags = []string{"latest"}
753753
case strings.HasPrefix(env.Tag, "v1."):
754-
tags = []string{"stable", fmt.Sprintf("release-1.%d", params.VersionMinor), "v" + params.Version}
754+
tags = []string{"stable", fmt.Sprintf("release-%v", version.Family), "v" + version.Semantic}
755755
}
756756
// Need to create a mult-arch builder
757757
build.MustRunCommand("docker", "buildx", "create", "--use", "--name", "multi-arch-builder", "--platform", *platform)
@@ -767,7 +767,7 @@ func doDockerBuildx(cmdline []string) {
767767
gethImage := fmt.Sprintf("%s%s", spec.base, tag)
768768
build.MustRunCommand("docker", "buildx", "build",
769769
"--build-arg", "COMMIT="+env.Commit,
770-
"--build-arg", "VERSION="+params.VersionWithMeta,
770+
"--build-arg", "VERSION="+version.WithMeta,
771771
"--build-arg", "BUILDNUM="+env.Buildnum,
772772
"--tag", gethImage,
773773
"--platform", *platform,
@@ -1139,19 +1139,19 @@ func doWindowsInstaller(cmdline []string) {
11391139
// Build the installer. This assumes that all the needed files have been previously
11401140
// built (don't mix building and packaging to keep cross compilation complexity to a
11411141
// minimum).
1142-
version := strings.Split(params.Version, ".")
1142+
ver := strings.Split(version.Semantic, ".")
11431143
if env.Commit != "" {
1144-
version[2] += "-" + env.Commit[:8]
1144+
ver[2] += "-" + env.Commit[:8]
11451145
}
1146-
installer, err := filepath.Abs("geth-" + archiveBasename(*arch, params.ArchiveVersion(env.Commit)) + ".exe")
1146+
installer, err := filepath.Abs("geth-" + archiveBasename(*arch, version.Archive(env.Commit)) + ".exe")
11471147
if err != nil {
11481148
log.Fatalf("Failed to convert installer file path: %v", err)
11491149
}
11501150
build.MustRunCommand("makensis.exe",
11511151
"/DOUTPUTFILE="+installer,
1152-
"/DMAJORVERSION="+version[0],
1153-
"/DMINORVERSION="+version[1],
1154-
"/DBUILDVERSION="+version[2],
1152+
"/DMAJORVERSION="+ver[0],
1153+
"/DMINORVERSION="+ver[1],
1154+
"/DBUILDVERSION="+ver[2],
11551155
"/DARCH="+*arch,
11561156
filepath.Join(*workdir, "geth.nsi"),
11571157
)

cmd/geth/config.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ import (
4242
"github.com/ethereum/go-ethereum/log"
4343
"github.com/ethereum/go-ethereum/metrics"
4444
"github.com/ethereum/go-ethereum/node"
45-
"github.com/ethereum/go-ethereum/params"
4645
"github.com/ethereum/go-ethereum/rpc"
4746
"github.com/naoina/toml"
4847
"github.com/urfave/cli/v2"
@@ -130,7 +129,7 @@ func defaultNodeConfig() node.Config {
130129
git, _ := version.VCS()
131130
cfg := node.DefaultConfig
132131
cfg.Name = clientIdentifier
133-
cfg.Version = params.VersionWithCommit(git.Commit, git.Date)
132+
cfg.Version = version.WithCommit(git.Commit, git.Date)
134133
cfg.HTTPModules = append(cfg.HTTPModules, "eth")
135134
cfg.WSModules = append(cfg.WSModules, "eth")
136135
cfg.IPCPath = "geth.ipc"

cmd/geth/consolecmd_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"testing"
2727
"time"
2828

29-
"github.com/ethereum/go-ethereum/params"
29+
"github.com/ethereum/go-ethereum/internal/version"
3030
)
3131

3232
const (
@@ -60,7 +60,7 @@ func TestConsoleWelcome(t *testing.T) {
6060
geth.SetTemplateFunc("goos", func() string { return runtime.GOOS })
6161
geth.SetTemplateFunc("goarch", func() string { return runtime.GOARCH })
6262
geth.SetTemplateFunc("gover", runtime.Version)
63-
geth.SetTemplateFunc("gethver", func() string { return params.VersionWithCommit("", "") })
63+
geth.SetTemplateFunc("gethver", func() string { return version.WithCommit("", "") })
6464
geth.SetTemplateFunc("niltime", func() string {
6565
return time.Unix(1695902100, 0).Format("Mon Jan 02 2006 15:04:05 GMT-0700 (MST)")
6666
})
@@ -129,7 +129,7 @@ func testAttachWelcome(t *testing.T, geth *testgeth, endpoint, apis string) {
129129
attach.SetTemplateFunc("goos", func() string { return runtime.GOOS })
130130
attach.SetTemplateFunc("goarch", func() string { return runtime.GOARCH })
131131
attach.SetTemplateFunc("gover", runtime.Version)
132-
attach.SetTemplateFunc("gethver", func() string { return params.VersionWithCommit("", "") })
132+
attach.SetTemplateFunc("gethver", func() string { return version.WithCommit("", "") })
133133
attach.SetTemplateFunc("niltime", func() string {
134134
return time.Unix(1695902100, 0).Format("Mon Jan 02 2006 15:04:05 GMT-0700 (MST)")
135135
})

cmd/geth/misccmd.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import (
2323
"strings"
2424

2525
"github.com/ethereum/go-ethereum/internal/version"
26-
"github.com/ethereum/go-ethereum/params"
2726
"github.com/urfave/cli/v2"
2827
)
2928

@@ -73,7 +72,7 @@ func printVersion(ctx *cli.Context) error {
7372
git, _ := version.VCS()
7473

7574
fmt.Println(strings.Title(clientIdentifier))
76-
fmt.Println("Version:", params.VersionWithMeta)
75+
fmt.Println("Version:", version.WithMeta)
7776
if git.Commit != "" {
7877
fmt.Println("Git Commit:", git.Commit)
7978
}

eth/backend.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ import (
4747
"github.com/ethereum/go-ethereum/event"
4848
"github.com/ethereum/go-ethereum/internal/ethapi"
4949
"github.com/ethereum/go-ethereum/internal/shutdowncheck"
50+
"github.com/ethereum/go-ethereum/internal/version"
5051
"github.com/ethereum/go-ethereum/log"
5152
"github.com/ethereum/go-ethereum/miner"
5253
"github.com/ethereum/go-ethereum/node"
@@ -56,6 +57,7 @@ import (
5657
"github.com/ethereum/go-ethereum/params"
5758
"github.com/ethereum/go-ethereum/rlp"
5859
"github.com/ethereum/go-ethereum/rpc"
60+
gethversion "github.com/ethereum/go-ethereum/version"
5961
)
6062

6163
// Config contains the configuration options of the ETH protocol.
@@ -172,7 +174,7 @@ func New(stack *node.Node, config *ethconfig.Config) (*Ethereum, error) {
172174

173175
if !config.SkipBcVersionCheck {
174176
if bcVersion != nil && *bcVersion > core.BlockChainVersion {
175-
return nil, fmt.Errorf("database version is v%d, Geth %s only supports v%d", *bcVersion, params.VersionWithMeta, core.BlockChainVersion)
177+
return nil, fmt.Errorf("database version is v%d, Geth %s only supports v%d", *bcVersion, version.WithMeta, core.BlockChainVersion)
176178
} else if bcVersion == nil || *bcVersion < core.BlockChainVersion {
177179
if bcVersion != nil { // only print warning on upgrade, not on init
178180
log.Warn("Upgrade blockchain database version", "from", dbVer, "to", core.BlockChainVersion)
@@ -278,7 +280,7 @@ func makeExtraData(extra []byte) []byte {
278280
if len(extra) == 0 {
279281
// create default extradata
280282
extra, _ = rlp.EncodeToBytes([]interface{}{
281-
uint(params.VersionMajor<<16 | params.VersionMinor<<8 | params.VersionPatch),
283+
uint(gethversion.Major<<16 | gethversion.Minor<<8 | gethversion.Patch),
282284
"geth",
283285
runtime.Version(),
284286
runtime.GOOS,

eth/catalyst/api.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ import (
3737
"github.com/ethereum/go-ethereum/log"
3838
"github.com/ethereum/go-ethereum/miner"
3939
"github.com/ethereum/go-ethereum/node"
40-
"github.com/ethereum/go-ethereum/params"
4140
"github.com/ethereum/go-ethereum/params/forks"
4241
"github.com/ethereum/go-ethereum/rlp"
4342
"github.com/ethereum/go-ethereum/rpc"
@@ -1194,7 +1193,7 @@ func (api *ConsensusAPI) GetClientVersionV1(info engine.ClientVersionV1) []engin
11941193
{
11951194
Code: engine.ClientCode,
11961195
Name: engine.ClientName,
1197-
Version: params.VersionWithMeta,
1196+
Version: version.WithMeta,
11981197
Commit: hexutil.Encode(commit),
11991198
},
12001199
}

eth/catalyst/api_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ import (
4242
"github.com/ethereum/go-ethereum/eth"
4343
"github.com/ethereum/go-ethereum/eth/downloader"
4444
"github.com/ethereum/go-ethereum/eth/ethconfig"
45+
"github.com/ethereum/go-ethereum/internal/version"
4546
"github.com/ethereum/go-ethereum/miner"
4647
"github.com/ethereum/go-ethereum/node"
4748
"github.com/ethereum/go-ethereum/p2p"
@@ -1823,7 +1824,7 @@ func TestGetClientVersion(t *testing.T) {
18231824
t.Fatalf("expected only one returned client version, got %d", len(infos))
18241825
}
18251826
info = infos[0]
1826-
if info.Code != engine.ClientCode || info.Name != engine.ClientName || info.Version != params.VersionWithMeta {
1827+
if info.Code != engine.ClientCode || info.Name != engine.ClientName || info.Version != version.WithMeta {
18271828
t.Fatalf("client info does match expected, got %s", info.String())
18281829
}
18291830
}

internal/flags/helpers.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ import (
2525

2626
"github.com/ethereum/go-ethereum/internal/version"
2727
"github.com/ethereum/go-ethereum/log"
28-
"github.com/ethereum/go-ethereum/params"
2928
"github.com/mattn/go-isatty"
3029
"github.com/urfave/cli/v2"
3130
)
@@ -39,7 +38,7 @@ func NewApp(usage string) *cli.App {
3938
git, _ := version.VCS()
4039
app := cli.NewApp()
4140
app.EnableBashCompletion = true
42-
app.Version = params.VersionWithCommit(git.Commit, git.Date)
41+
app.Version = version.WithCommit(git.Commit, git.Date)
4342
app.Usage = usage
4443
app.Copyright = "Copyright 2013-2024 The go-ethereum Authors"
4544
app.Before = func(ctx *cli.Context) error {

internal/version/vcs.go

+25
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,31 @@ const (
2828
ourTimeLayout = "20060102"
2929
)
3030

31+
// These variables are set at build-time by the linker when the build is
32+
// done by build/ci.go.
33+
var gitCommit, gitDate string
34+
35+
// VCSInfo represents the git repository state.
36+
type VCSInfo struct {
37+
Commit string // head commit hash
38+
Date string // commit time in YYYYMMDD format
39+
Dirty bool
40+
}
41+
42+
// VCS returns version control information of the current executable.
43+
func VCS() (VCSInfo, bool) {
44+
if gitCommit != "" {
45+
// Use information set by the build script if present.
46+
return VCSInfo{Commit: gitCommit, Date: gitDate}, true
47+
}
48+
if buildInfo, ok := debug.ReadBuildInfo(); ok {
49+
if buildInfo.Main.Path == ourPath {
50+
return buildInfoVCS(buildInfo)
51+
}
52+
}
53+
return VCSInfo{}, false
54+
}
55+
3156
// buildInfoVCS returns VCS information of the build.
3257
func buildInfoVCS(info *debug.BuildInfo) (s VCSInfo, ok bool) {
3358
for _, v := range info.Settings {

internal/version/version.go

+37-22
Original file line numberDiff line numberDiff line change
@@ -23,34 +23,49 @@ import (
2323
"runtime/debug"
2424
"strings"
2525

26-
"github.com/ethereum/go-ethereum/params"
26+
"github.com/ethereum/go-ethereum/version"
2727
)
2828

2929
const ourPath = "github.com/ethereum/go-ethereum" // Path to our module
3030

31-
// These variables are set at build-time by the linker when the build is
32-
// done by build/ci.go.
33-
var gitCommit, gitDate string
31+
// Family holds the textual version string for major.minor
32+
var Family = fmt.Sprintf("%d.%d", version.Major, version.Minor)
3433

35-
// VCSInfo represents the git repository state.
36-
type VCSInfo struct {
37-
Commit string // head commit hash
38-
Date string // commit time in YYYYMMDD format
39-
Dirty bool
34+
// Semantic holds the textual version string for major.minor.patch.
35+
var Semantic = fmt.Sprintf("%d.%d.%d", version.Major, version.Minor, version.Patch)
36+
37+
// WithMeta holds the textual version string including the metadata.
38+
var WithMeta = func() string {
39+
v := Semantic
40+
if version.Meta != "" {
41+
v += "-" + version.Meta
42+
}
43+
return v
44+
}()
45+
46+
func WithCommit(gitCommit, gitDate string) string {
47+
vsn := WithMeta
48+
if len(gitCommit) >= 8 {
49+
vsn += "-" + gitCommit[:8]
50+
}
51+
if (version.Meta != "stable") && (gitDate != "") {
52+
vsn += "-" + gitDate
53+
}
54+
return vsn
4055
}
4156

42-
// VCS returns version control information of the current executable.
43-
func VCS() (VCSInfo, bool) {
44-
if gitCommit != "" {
45-
// Use information set by the build script if present.
46-
return VCSInfo{Commit: gitCommit, Date: gitDate}, true
57+
// Archive holds the textual version string used for Geth archives. e.g.
58+
// "1.8.11-dea1ce05" for stable releases, or "1.8.13-unstable-21c059b6" for unstable
59+
// releases.
60+
func Archive(gitCommit string) string {
61+
vsn := Semantic
62+
if version.Meta != "stable" {
63+
vsn += "-" + version.Meta
4764
}
48-
if buildInfo, ok := debug.ReadBuildInfo(); ok {
49-
if buildInfo.Main.Path == ourPath {
50-
return buildInfoVCS(buildInfo)
51-
}
65+
if len(gitCommit) >= 8 {
66+
vsn += "-" + gitCommit[:8]
5267
}
53-
return VCSInfo{}, false
68+
return vsn
5469
}
5570

5671
// ClientName creates a software name/version identifier according to common
@@ -59,7 +74,7 @@ func ClientName(clientIdentifier string) string {
5974
git, _ := VCS()
6075
return fmt.Sprintf("%s/v%v/%v-%v/%v",
6176
strings.Title(clientIdentifier),
62-
params.VersionWithCommit(git.Commit, git.Date),
77+
WithCommit(git.Commit, git.Date),
6378
runtime.GOOS, runtime.GOARCH,
6479
runtime.Version(),
6580
)
@@ -72,7 +87,7 @@ func ClientName(clientIdentifier string) string {
7287
// it will assume it's imported by a third-party and will return the imported
7388
// version and whether it was replaced by another module.
7489
func Info() (version, vcs string) {
75-
version = params.VersionWithMeta
90+
version = WithMeta
7691
buildInfo, ok := debug.ReadBuildInfo()
7792
if !ok {
7893
return version, ""
@@ -115,7 +130,7 @@ func versionInfo(info *debug.BuildInfo) string {
115130
// If our module path wasn't imported, it's unclear which
116131
// version of our code they are running. Fallback to hardcoded
117132
// version.
118-
return version + fmt.Sprintf("geth %s", params.VersionWithMeta)
133+
return version + fmt.Sprintf("geth %s", WithMeta)
119134
}
120135
// Our package is a dependency for the main module. Return path and
121136
// version data for both.

0 commit comments

Comments
 (0)