forked from paxosglobal/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core: move build version reading to its own package (ethereum#25806)
This fixes the build with Go 1.17, which does not have BuildInfo.Settings yet.
- Loading branch information
1 parent
3a4aba6
commit dadd639
Showing
4 changed files
with
123 additions
and
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// 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" | ||
|
||
// In Go versions before 1.18, VCS information is not available. | ||
|
||
func vcsInfo(info *debug.BuildInfo) (gitStatus, bool) { | ||
return gitStatus{}, false | ||
} |
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,48 @@ | ||
// 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" | ||
|
||
// In go 1.18 and beyond, the go tool embeds VCS information into the build. | ||
|
||
// vcsInfo returns VCS information of the build. | ||
func vcsInfo(info *debug.BuildInfo) (s gitStatus, ok bool) { | ||
for _, v := range info.Settings { | ||
switch v.Key { | ||
case "vcs.revision": | ||
if len(v.Value) < 8 { | ||
s.revision = v.Value | ||
} else { | ||
s.revision = v.Value[:8] | ||
} | ||
case "vcs.modified": | ||
if v.Value == "true" { | ||
s.modified = true | ||
} | ||
case "vcs.time": | ||
s.time = v.Value | ||
} | ||
} | ||
if s.revision != "" && s.time != "" { | ||
ok = true | ||
} | ||
return | ||
} |
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