2018-11-01 07:46:13 +00:00
|
|
|
# Distribution
|
|
|
|
|
|
|
|
This section describes how to build and deploy publicly available releases of
|
2018-11-28 01:59:20 +00:00
|
|
|
the Step CA.
|
2018-11-01 07:46:13 +00:00
|
|
|
|
|
|
|
## Creating A New Release
|
|
|
|
|
|
|
|
New releases are (almost) entirely built and deployed by Travis-CI. Creating a new
|
|
|
|
release is as simple as pushing a new github tag.
|
|
|
|
|
|
|
|
**Definitions**:
|
|
|
|
|
2018-11-28 01:59:20 +00:00
|
|
|
* **Standard Release**: ready for public use. no `-rc*` suffix on the version.
|
2018-11-01 07:46:13 +00:00
|
|
|
e.g. `v1.0.2`
|
2018-11-28 01:59:20 +00:00
|
|
|
* **Release Candidate**: not ready for public use, still testing. must have a
|
2018-11-01 07:46:13 +00:00
|
|
|
`-rc*` suffix. e.g. `v1.0.2-rc` or `v1.0.2-rc.4`
|
|
|
|
|
2019-03-26 22:06:38 +00:00
|
|
|
1. **Update the version of step/cli**
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-03-26 22:06:38 +00:00
|
|
|
```
|
|
|
|
$ dep ensure -update github.com/smallstep/cli
|
|
|
|
```
|
|
|
|
|
|
|
|
2. **Commit all changes.**
|
2019-02-21 23:27:55 +00:00
|
|
|
|
|
|
|
Make sure that the local checkout is up to date with the remote origin and
|
|
|
|
that all local changes have been pushed.
|
2018-11-01 07:46:13 +00:00
|
|
|
|
|
|
|
```
|
2019-04-11 23:02:13 +00:00
|
|
|
$ git pull --rebase origin master
|
|
|
|
$ git push
|
2018-11-01 07:46:13 +00:00
|
|
|
```
|
|
|
|
|
2019-03-26 22:06:38 +00:00
|
|
|
3. **Tag it!**
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-02-21 23:27:55 +00:00
|
|
|
1. **Find the most recent tag.**
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-02-21 23:27:55 +00:00
|
|
|
```
|
2019-04-11 23:02:13 +00:00
|
|
|
$ git fetch --tags
|
|
|
|
$ git tag
|
2019-02-21 23:27:55 +00:00
|
|
|
```
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-02-21 23:27:55 +00:00
|
|
|
The new tag needs to be the logical successor of the most recent existing tag.
|
|
|
|
See [versioning](#versioning) section for more information on version numbers.
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-03-26 22:06:38 +00:00
|
|
|
2. **Select the type and value of the next tag.**
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-02-21 23:27:55 +00:00
|
|
|
Is the new release a *release candidate* or a *standard release*?
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-02-21 23:27:55 +00:00
|
|
|
1. Release Candidate
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-02-21 23:27:55 +00:00
|
|
|
If the most recent tag is a standard release, say `v1.0.2`, then the version
|
|
|
|
of the next release candidate should be `v1.0.3-rc.1`. If the most recent tag
|
|
|
|
is a release candidate, say `v1.0.2-rc.3`, then the version of the next
|
|
|
|
release candidate should be `v1.0.2-rc.4`.
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-02-21 23:27:55 +00:00
|
|
|
2. Standard Release
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-02-21 23:27:55 +00:00
|
|
|
If the most recent tag is a standard release, say `v1.0.2`, then the version
|
|
|
|
of the next standard release should be `v1.0.3`. If the most recent tag
|
|
|
|
is a release candidate, say `v1.0.2-rc.3`, then the version of the next
|
|
|
|
standard release should be `v1.0.3`.
|
2018-11-01 07:46:13 +00:00
|
|
|
|
|
|
|
|
2019-02-21 23:27:55 +00:00
|
|
|
3. **Create a local tag.**
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-02-21 23:27:55 +00:00
|
|
|
```
|
2019-04-11 23:02:13 +00:00
|
|
|
$ git tag v1.0.3 # standard release
|
2019-02-21 23:27:55 +00:00
|
|
|
...or
|
2019-04-11 23:02:13 +00:00
|
|
|
$ git tag v1.0.3-rc.1 # release candidate
|
2019-02-21 23:27:55 +00:00
|
|
|
```
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-02-21 23:27:55 +00:00
|
|
|
4. **Push the new tag to the remote origin.**
|
|
|
|
|
|
|
|
```
|
2019-04-11 23:02:13 +00:00
|
|
|
$ git push origin tag v1.0.3 # standard release
|
2019-02-21 23:27:55 +00:00
|
|
|
...or
|
2019-04-11 23:02:13 +00:00
|
|
|
$ git push origin tag v1.0.3-rc.1 # release candidate
|
2019-02-21 23:27:55 +00:00
|
|
|
```
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-03-26 22:06:38 +00:00
|
|
|
4. Check the build status at
|
2018-11-01 07:46:13 +00:00
|
|
|
[Travis-CI](https://travis-ci.com/smallstep/certificates/builds/).
|
|
|
|
|
|
|
|
Travis will begin by verifying that there are no compilation or linting errors
|
|
|
|
and then run the unit tests. Assuming all the checks have passed, Travis will
|
|
|
|
build Darwin and Linux artifacts (for easily installing `step`) and upload them
|
|
|
|
as part of the [Github Release](https://github.com/smallstep/certificates/releases).
|
|
|
|
|
|
|
|
Travis will build and upload the following artifacts:
|
|
|
|
|
2019-04-05 17:45:40 +00:00
|
|
|
* **step-certificates_1.0.3_amd64.deb**: debian package for installation on linux.
|
|
|
|
* **step-certificates_1.0.3_linux_amd64.tar.gz**: tarball containing a statically compiled linux binary.
|
|
|
|
* **step-certificates_1.0.3_darwin_amd64.tar.gz**: tarball containing a statically compiled darwin binary.
|
|
|
|
* **step-certificates.tar.gz**: tarball containing a git archive of the full repo.
|
2018-11-01 07:46:13 +00:00
|
|
|
|
2019-04-11 23:02:13 +00:00
|
|
|
6. **Update the AUR Arch Linux package**
|
|
|
|
|
|
|
|
**NOTE**: if you plan to release `cli` next then you can skip this step.
|
|
|
|
|
|
|
|
```
|
|
|
|
$ cd archlinux
|
|
|
|
|
|
|
|
# Get up to date...
|
|
|
|
$ git pull origin master
|
|
|
|
$ make
|
|
|
|
|
|
|
|
$ ./update --ca v1.0.3
|
|
|
|
```
|
|
|
|
|
2018-11-01 07:46:13 +00:00
|
|
|
*All Done!*
|
2019-02-21 23:27:55 +00:00
|
|
|
|
|
|
|
## Versioning
|
|
|
|
|
2019-04-11 23:02:13 +00:00
|
|
|
We use [SemVer](http://semver.org/) for versioning. See the
|
|
|
|
[tags on this repository](https://github.com/smallstep/certificates) for all
|
|
|
|
available versions.
|