...

/

Embedding Data Into Go Programs

Embedding Data Into Go Programs

In this lesson, we'll use a built-in technique to embed the git tag and the time the program that was built into our executable. Then, we'll use this information inside the program.

Incorporating git tag for auto versioning

Versioning your code is a good practice. If you use a source control system like git, then you can tag commits using the git tag command. However, when you build your code, the program has no notion of the version of the source code it was built from.

One approach is to maintain a VERSION file or a version constant in your code and increment it every time you make a change. This is somewhat error-prone and redundant if you already tag your code.

Instead, we can embed the git tag automatically during build time. The key is to pass a -X option to -ldflags that specifies a package and variable in the program and the value.

$ go build -ldflags="-X '<package>.<variable>=<value>'"

To get the git tag during build time we can use the following command:

$ git describe --tags
v0.6

As long as we embed information we can also add ...