forked from cerc-io/plugeth
65f3c1b46f
This changes the CI build to store the git commit and date into package internal/version instead of package main. Doing this essentially merges our two ways of tracking the go-ethereum version into a single place, achieving two objectives: - Bad block reports, which use version.Info(), will now have the git commit information even when geth is built in an environment such as launchpad.net where git access is unavailable. - For geth builds created by `go build ./cmd/geth` (i.e. not using `go run build/ci.go install`), git information stored by the go tool is now used in the p2p node name as well as in `geth version` and `geth version-check`.
56 lines
1.5 KiB
Go
56 lines
1.5 KiB
Go
// Copyright 2022 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//go:build go1.18
|
|
// +build go1.18
|
|
|
|
package version
|
|
|
|
import (
|
|
"runtime/debug"
|
|
"time"
|
|
)
|
|
|
|
// In go 1.18 and beyond, the go tool embeds VCS information into the build.
|
|
|
|
const (
|
|
govcsTimeLayout = "2006-01-02T15:04:05Z"
|
|
ourTimeLayout = "20060102"
|
|
)
|
|
|
|
// buildInfoVCS returns VCS information of the build.
|
|
func buildInfoVCS(info *debug.BuildInfo) (s VCSInfo, ok bool) {
|
|
for _, v := range info.Settings {
|
|
switch v.Key {
|
|
case "vcs.revision":
|
|
s.Commit = v.Value
|
|
case "vcs.modified":
|
|
if v.Value == "true" {
|
|
s.Dirty = true
|
|
}
|
|
case "vcs.time":
|
|
t, err := time.Parse(govcsTimeLayout, v.Value)
|
|
if err == nil {
|
|
s.Date = t.Format(ourTimeLayout)
|
|
}
|
|
}
|
|
}
|
|
if s.Commit != "" && s.Date != "" {
|
|
ok = true
|
|
}
|
|
return
|
|
}
|