Skip to content
This repository was archived by the owner on Nov 2, 2018. It is now read-only.

Display build metadata on siad startup and via siac version #2833

Merged
merged 5 commits into from
Mar 9, 2018

Conversation

tbenz9
Copy link
Collaborator

@tbenz9 tbenz9 commented Mar 7, 2018

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.

@tbenz9 tbenz9 changed the title Display build metadata on siad startup and via siac version [WIP] Display build metadata on siad startup and via siac version Mar 8, 2018
tbenz9 added 2 commits March 7, 2018 20:36
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
@tbenz9 tbenz9 changed the title [WIP] Display build metadata on siad startup and via siac version Display build metadata on siad startup and via siac version Mar 8, 2018
@tbenz9 tbenz9 requested a review from lukechampine March 8, 2018 05:16
@tbenz9
Copy link
Collaborator Author

tbenz9 commented Mar 8, 2018

Sample output of siac version:

Sia Client
        Version 1.3.2
        Git Revision 9a1aab6
        Git Branch build-version
        Build Time 2018-03-07T21:05:59-0800
Sia Daemon
        Version 1.3.2
        Git Revision 9a1aab6
        Git Branch build-version
        Build Time 2018-03-07T21:05:59-0800

Sample output of siad starting:

Sia Daemon v1.3.2
Git Revision 9a1aab6
Loading...
(0/2) Loading siad...
(1/2) Loading gateway...
(2/2) Loading consensus...
Finished loading in 0.221536432 seconds

fmt.Println("\tGit Revision " + dvg.GitRevision)
fmt.Println("\tGit Branch " + dvg.GitBranch)
fmt.Println("\tBuild Time " + dvg.BuildTime)
}
Copy link
Contributor

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)

@ChrisSchinnerl
Copy link
Contributor

I don't know if we really need the build time and branch. What do you think @lukechampine ?

@lukechampine
Copy link
Member

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 date command instead of the specially formatted one. date by default outputs a nice human-readable representation of the date.

@tbenz9
Copy link
Collaborator Author

tbenz9 commented Mar 9, 2018

@lukechampine date is formatted that way because make is very weird about what it tries to interpret as arguments. For example this doesn't work:

tbenz9@spartan1:~/go/src/github.com/NebulousLabs/Sia$ make release                                                                                           
go install -tags='netgo' -a -ldflags='-s -w -X github.com/NebulousLabs/Sia/build.GitRevision=✗-e9c221a -X github.com/NebulousLabs/Sia/build.BuildTime="Fri Mar  9 10:05:23 PST 2018"' ./build ./cmd/siac ./cmd/siad ...

But this does:

tbenz9@spartan1:~/go/src/github.com/NebulousLabs/Sia$ make release                                                                                           
go install -tags='netgo' -a -ldflags='-s -w -X github.com/NebulousLabs/Sia/build.GitRevision=✗-e9c221a -X github.com/NebulousLabs/Sia/build.BuildTime="FriMar910:05:23PST2018"' ./build ./cmd/siac ./cmd/siad ...

You would think the "" around date would allow it to be passed in as a string, but that is not working for me. We can either troubleshoot make or come up with a date string without spaces.

@ChrisSchinnerl
Copy link
Contributor

@tbenz9 I don't have lots of experience with that but can you escape the spaces with a \ before the space?

@tbenz9
Copy link
Collaborator Author

tbenz9 commented Mar 9, 2018

@ChrisSchinnerl good idea but didn't work.

tbenz9@spartan1:~/go/src/github.com/NebulousLabs/Sia$ make release                                                                                                                                                                                                                                                            
go install -tags='netgo' -a -ldflags='-s -w -X github.com/NebulousLabs/Sia/build.GitRevision=✗-e9c221a -X github.com/NebulousLabs/Sia/build.BuildTime="Fri\ Mar\ 09\ 11:01:42PST2018"' ./build ./cmd/siac ./cmd/siad

still fails with a 'usage' error meaning the arguments aren't recognized.

@ChrisSchinnerl
Copy link
Contributor

ChrisSchinnerl commented Mar 9, 2018

In case anyone else is wondering, we found the issue. The following works:

go install -tags='netgo' -a -ldflags="-s -w -X 'github.com/NebulousLabs/Sia/build.BuildTime=Fri Mar 9 10:05:23 PST 2018'" ./build ./cmd/siac

@lukechampine
Copy link
Member

lukechampine commented Mar 9, 2018

ah yeah, single quotes is the way to go.

You can actually also just enclose the commands in backticks (`); then, when you run the go install command, those commands will be run. e.g.

go install -ldflags="-X 'github.com/NebulousLabs/Sia/build.BuildTime=`date`'" 

but what we have now is fine

Version string
Version string
GitRevision string
BuildTime string
Copy link
Member

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
Copy link
Member

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

@lukechampine lukechampine merged commit 840c34e into NebulousLabs:master Mar 9, 2018
@tbenz9 tbenz9 deleted the build-version branch March 12, 2018 18:21
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants