-
Notifications
You must be signed in to change notification settings - Fork 440
Display build metadata on siad
startup and via siac version
#2833
Conversation
siad
startup and via siac version
siad
startup and via siac version
When running your own build it can sometimes be difficult to identify exactly which commit you are running from. This adds additional build information to the `siac version` command, and displays the git revision hash when `siad` starts up. If the build was not completed via the Makefile `siad` will display a warning on start and `siac version` will not display any of the build information. gofmt and typo
siad
startup and via siac version
siad
startup and via siac version
Sample output of
Sample output of
|
cmd/siac/daemoncmd.go
Outdated
fmt.Println("\tGit Revision " + dvg.GitRevision) | ||
fmt.Println("\tGit Branch " + dvg.GitBranch) | ||
fmt.Println("\tBuild Time " + dvg.BuildTime) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think something like the following might improve the alignment of the left and right block and might make it easier to read.
fmt.Println("\tGit Revision: " + dvg.GitRevision)
fmt.Println("\tGit Branch: " + dvg.GitBranch)
fmt.Println("\tBuild Time: " + dvg.BuildTime)
I don't know if we really need the build time and branch. What do you think @lukechampine ? |
branch shouldn't be necessary; the commit hash should be sufficient. Build time isn't strictly necessary, but I could imagine it helping in some cases (e.g. "when did we build the last RC?"). The one thing I would change is using the default |
@lukechampine
But this does:
You would think the |
@tbenz9 I don't have lots of experience with that but can you escape the spaces with a |
@ChrisSchinnerl good idea but didn't work.
still fails with a 'usage' error meaning the arguments aren't recognized. |
In case anyone else is wondering, we found the issue. The following works:
|
ah yeah, single quotes is the way to go. You can actually also just enclose the commands in backticks (`); then, when you run the
but what we have now is fine |
Version string | ||
Version string | ||
GitRevision string | ||
BuildTime string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these will need to be documented, but we can handle that in a separate PR. I want to include this change in the rc
build/commit.go
Outdated
|
||
// GitRevision and BuildTime get assigned via the Makefile when built. | ||
var ( | ||
GitRevision, BuildTime string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like golint
complains about these:
build/commit.go:5:2: exported var BuildTime should have its own declaration
When running your own build it can sometimes be difficult to identify exactly which commit you are running from. This adds additional build information to the
siac version
command, and displays the git revision hash whensiad
starts up. If the build was not completed via the Makefilesiad
will display a warning on start andsiac version
will not display any of the build information.