Skip to content

Commit cc70731

Browse files
authored
feat: Use version info from runtime/debug:BuildInfo when installed by go build (#4359)
* feat: Use version info from runtime/debug:BuildInfo when installed by go install * feat: Use version info from runtime/debug:BuildInfo when installed by go install
1 parent fd935bf commit cc70731

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

protoc-gen-grpc-gateway/main.go

+16
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
"flag"
1414
"fmt"
1515
"os"
16+
"runtime/debug"
1617
"strings"
1718

1819
"github.com/grpc-ecosystem/grpc-gateway/v2/internal/codegenerator"
@@ -50,6 +51,21 @@ func main() {
5051
flag.Parse()
5152

5253
if *versionFlag {
54+
if commit == "unknown" {
55+
buildInfo, ok := debug.ReadBuildInfo()
56+
if ok {
57+
for _, setting := range buildInfo.Settings {
58+
if setting.Key == "vcs.revision" {
59+
commit = setting.Value
60+
}
61+
if setting.Key == "vcs.time" {
62+
date = setting.Value
63+
}
64+
}
65+
fmt.Printf("commit %v, built at %v\n", commit, date)
66+
os.Exit(0)
67+
}
68+
}
5369
fmt.Printf("Version %v, commit %v, built at %v\n", version, commit, date)
5470
os.Exit(0)
5571
}

protoc-gen-openapiv2/main.go

+16
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"flag"
55
"fmt"
66
"os"
7+
"runtime/debug"
78
"strings"
89

910
"github.com/grpc-ecosystem/grpc-gateway/v2/internal/codegenerator"
@@ -63,6 +64,21 @@ func main() {
6364
flag.Parse()
6465

6566
if *versionFlag {
67+
if commit == "unknown" {
68+
buildInfo, ok := debug.ReadBuildInfo()
69+
if ok {
70+
for _, setting := range buildInfo.Settings {
71+
if setting.Key == "vcs.revision" {
72+
commit = setting.Value
73+
}
74+
if setting.Key == "vcs.time" {
75+
date = setting.Value
76+
}
77+
}
78+
fmt.Printf("commit %v, built at %v\n", commit, date)
79+
os.Exit(0)
80+
}
81+
}
6682
fmt.Printf("Version %v, commit %v, built at %v\n", version, commit, date)
6783
os.Exit(0)
6884
}

0 commit comments

Comments
 (0)