rclone/RELEASE.md

31 lines
950 B
Markdown
Raw Normal View History

2015-02-04 22:31:56 +00: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-22 17:47:16 +00:00
* errcheck - go get github.com/kisielk/errcheck
* golint - go get github.com/golang/lint
2015-02-04 22:31:56 +00:00
Making a release
2015-09-22 17:47:16 +00:00
* make check
2015-02-04 22:31:56 +00:00
* make test
* make tag
2015-06-06 14:45:00 +00:00
* edit docs/content/changelog.md
* make doc
2015-06-06 14:45:00 +00:00
* git commit -a -v
2015-02-04 22:31:56 +00:00
* make retag
* # Set the GOPATH for a gox enabled compiler - . ~/bin/go-cross - not required for go >= 1.5
2015-02-04 22:31:56 +00:00
* make cross
* make upload
* make upload_website
* git push --tags origin master
* make upload_github
2016-12-14 17:49:26 +00: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