2015-02-05 06:31:56 +08:00
|
|
|
Required software for making a release
|
|
|
|
* [github-release](https://github.com/aktau/github-release) for uploading packages
|
|
|
|
* [gox](https://github.com/mitchellh/gox) for cross compiling
|
|
|
|
* Run `gox -build-toolchain`
|
|
|
|
* This assumes you have your own source checkout
|
|
|
|
* pandoc for making the html and man pages
|
2015-09-23 01:47:16 +08:00
|
|
|
* errcheck - go get github.com/kisielk/errcheck
|
|
|
|
* golint - go get github.com/golang/lint
|
2015-02-05 06:31:56 +08:00
|
|
|
|
|
|
|
Making a release
|
2017-01-02 22:38:14 +08:00
|
|
|
* git status - make sure everything is checked in
|
|
|
|
* Check travis & appveyor builds are green
|
2015-09-23 01:47:16 +08:00
|
|
|
* make check
|
2015-02-05 06:31:56 +08:00
|
|
|
* make test
|
|
|
|
* make tag
|
2015-06-06 22:45:00 +08:00
|
|
|
* edit docs/content/changelog.md
|
2016-03-02 01:42:27 +08:00
|
|
|
* make doc
|
2015-06-06 22:45:00 +08:00
|
|
|
* git commit -a -v
|
2015-02-05 06:31:56 +08:00
|
|
|
* make retag
|
2017-01-02 22:38:14 +08:00
|
|
|
* # Set the GOPATH for a current stable go compiler
|
2015-02-05 06:31:56 +08:00
|
|
|
* make cross
|
|
|
|
* make upload
|
|
|
|
* make upload_website
|
|
|
|
* git push --tags origin master
|
2015-11-24 05:58:54 +08:00
|
|
|
* make upload_github
|
2016-12-15 01:49:26 +08:00
|
|
|
|
|
|
|
Early in the next release cycle update the vendored dependencies
|
|
|
|
* make update
|
|
|
|
* git status
|
|
|
|
* git add new files
|
|
|
|
* carry forward any patches to vendor stuff
|
|
|
|
* git commit -a -v
|