mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 18:31:17 +08:00
34 lines
1.1 KiB
Markdown
34 lines
1.1 KiB
Markdown
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
|
|
* errcheck - go get github.com/kisielk/errcheck
|
|
* golint - go get github.com/golang/lint
|
|
|
|
Making a release
|
|
* git status - make sure everything is checked in
|
|
* Check travis & appveyor builds are green
|
|
* make check
|
|
* make test
|
|
* make tag
|
|
* edit docs/content/changelog.md
|
|
* make doc
|
|
* git status - to check for new man pages - git add them
|
|
* git commit -a -v -m "Version v1.XX"
|
|
* make retag
|
|
* # Set the GOPATH for a current stable go compiler
|
|
* make cross
|
|
* make upload
|
|
* make upload_website
|
|
* git push --tags origin master
|
|
* make upload_github
|
|
|
|
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
|