|
| 1 | +## Tag Driven Releasing |
| 2 | + |
| 3 | +Copied from https://github.com/scala/scala-java8-compat/commit/4a6cfc97cd95227b86650410e1b632e5ff79335b. |
| 4 | + |
| 5 | +### Background Reading |
| 6 | + |
| 7 | + - http://docs.travis-ci.com/user/environment-variables/ |
| 8 | + - http://docs.travis-ci.com/user/encryption-keys/ |
| 9 | + - http://docs.travis-ci.com/user/encrypting-files/ |
| 10 | + |
| 11 | +### Initial setup for the repository |
| 12 | + |
| 13 | +To configure tag driven releases from Travis CI. |
| 14 | + |
| 15 | + 1. Generate a key pair for this repository with `./admin/genKeyPair.sh`. |
| 16 | + Edit `.travis.yml` and `admin/build.sh` as prompted. |
| 17 | + 2. Publish the public key to https://pgp.mit.edu |
| 18 | + 3. Store other secrets as encrypted environment variables with `admin/encryptEnvVars.sh`. |
| 19 | + Edit `.travis.yml` as prompted. |
| 20 | + 4. Edit `.travis.yml` to use `./admin/build.sh` as the build script, |
| 21 | + and edit that script to use the tasks required for this project. |
| 22 | + 5. Edit `.travis.yml` to select which JDK will be used for publishing. |
| 23 | + |
| 24 | +It is important to add comments in .travis.yml to identify the name |
| 25 | +of each environment variable encoded in a `:secure` section. |
| 26 | + |
| 27 | +After all of these steps, your .travis.yml should contain config of the |
| 28 | +form: |
| 29 | + |
| 30 | + language: scala |
| 31 | + env: |
| 32 | + global: |
| 33 | + - PUBLISH_JDK=openjdk6 |
| 34 | + # PGP_PASSPHRASE |
| 35 | + - secure: "XXXXXX" |
| 36 | + # SONA_USER |
| 37 | + - secure: "XXXXXX" |
| 38 | + # SONA_PASS |
| 39 | + - secure: "XXXXXX" |
| 40 | + script: admin/build.sh |
| 41 | + |
| 42 | +If Sonatype credentials change in the future, step 3 can be repeated |
| 43 | +without generating a new key. |
| 44 | + |
| 45 | +Be sure to use SBT 0.13.7 or higher to avoid [#1430](https://github.com/sbt/sbt/issues/1430)! |
| 46 | + |
| 47 | +### Testing |
| 48 | + |
| 49 | + 1. Follow the release process below to create a dummy release (e.g. 0.1.0-TEST1). |
| 50 | + Confirm that the release was staged to Sonatype but do not release it to Maven |
| 51 | + central. Instead, drop the staging repository. |
| 52 | + |
| 53 | +### Performing a release |
| 54 | + |
| 55 | + 1. Create a GitHub "Release" (with a corresponding tag) via the GitHub |
| 56 | + web interface. |
| 57 | + 2. Travis CI will schedule a build for this release. Review the build logs. |
| 58 | + 3. Log into https://oss.sonatype.org/ and identify the staging repository. |
| 59 | + 4. Sanity check its contents |
| 60 | + 5. Release staging repository to Maven and send out release announcement. |
| 61 | + |
0 commit comments