33 lines
2.1 KiB
Markdown
33 lines
2.1 KiB
Markdown
[![Release](https://img.shields.io/github/release/version-go/ldflags.svg?style=flat-square)](https://git.webz.asia/version-go/ldflags/releases)
|
|
![GitHub](https://img.shields.io/github/license/version-go/ldflags?style=flat-square)
|
|
[![Maintainability](https://api.codeclimate.com/v1/badges/4adb592e28b03dd219b8/maintainability)](https://codeclimate.com/github/version-go/ldflags/maintainability)
|
|
[![Go Report Card](https://goreportcard.com/badge/git.webz.asia/version-go/ldflags)](https://goreportcard.com/report/git.webz.asia/version-go/ldflags)
|
|
[![GoDoc](https://godoc.org/git.webz.asia/version-go/ldflags?status.svg)](https://godoc.org/git.webz.asia/version-go/ldflags)
|
|
[![GoDoc](https://pkg.go.dev/badge/git.webz.asia/version-go/ldflags?status.svg)](https://pkg.go.dev/git.webz.asia/version-go/ldflags?tab=doc)
|
|
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fversion-go%2Fldflags.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fversion-go%2Fldflags?ref=badge_shield)
|
|
[![time tracker](https://wakatime.com/badge/github/version-go/ldflags.svg)](https://wakatime.com/badge/github/version-go/ldflags)
|
|
# ldflags package
|
|
|
|
Package to store on-build extra information: version(tag), build hash, build time
|
|
|
|
|
|
## Usage
|
|
Add this package as dependency to YOUR package:
|
|
```bash
|
|
go get git.webz.asia/version-go/ldflags
|
|
```
|
|
|
|
Then on build of YOUR package just add extra:
|
|
```bash
|
|
go build -ldflags "-X 'git.webz.asia/version-go/ldflags.buildVersion=0.1.0' -X 'git.webz.asia/version-go/ldflags.buildHash=9e7637c' -X 'git.webz.asia/version-go/ldflags.buildTime=Sun Oct 4 20:57:29 CEST 2020'" .
|
|
```
|
|
|
|
Or do it automatically based on existing git/data:
|
|
```bash
|
|
go build -ldflags "-X 'git.webz.asia/version-go/ldflags.buildVersion=$(git describe --abbrev=0 --tags)' -X 'git.webz.asia/version-go/ldflags.buildHash=$(git rev-parse --short HEAD)' -X 'git.webz.asia/version-go/ldflags.buildTime=$(date)'" .
|
|
```
|
|
will store current latest tag, commit hash and build time.
|
|
|
|
|
|
## License
|
|
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fversion-go%2Fldflags.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fversion-go%2Fldflags?ref=badge_large) |