-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Branch Packaging | ||
|
||
- [ ] Clone https://github.com/theforeman/candlepin-packaging | ||
- [ ] Check out most recent branch `rpm/< latest_version >` | ||
- [ ] Create a new branch for the version being added | ||
- `git checkout -b rpm/<%= release %>` | ||
- [ ] Update `package_manifest.yaml` with <%= release %> | ||
- [ ] Push new branch to https://github.com/theforeman/candlepin-packaging | ||
|
||
# Update CI | ||
|
||
- [ ] Open a PR with the following updates: | ||
- [ ] Add new vars file for the version being branched, [for example](https://github.com/theforeman/jenkins-jobs/blob/master/theforeman.org/pipelines/vars/candlepin/4.4.groovy) | ||
- [ ] Add <%= release %> to https://github.com/theforeman/jenkins-jobs/blob/master/theforeman.org/yaml/includes/candlepin_versions.yaml.inc | ||
- [ ] Add <%= release %> to https://github.com/theforeman/jenkins-jobs/blob/master/centos.org/jobs/candlepin-pipelines.yml | ||
- Create new GPG key for release | ||
- [ ] VERSION=<%= release %> PROJECT=candlepin <%= rel_eng_script('generate_gpg') %> | ||
- [ ] VERSION=<%= release %> PROJECT=candlepin <%= rel_eng_script('export_gpg_private') %> to back up | ||
- [ ] VERSION=<%= release %> PROJECT=candlepin <%= rel_eng_script('sign_gpg') %> | ||
- [ ] VERSION=<%= release %> PROJECT=candlepin <%= rel_eng_script('upload_gpg') %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Build Package | ||
|
||
- [ ] Acquire Candlepin SRPM for <%= release %> | ||
- [ ] Build into Copr | ||
- `copr build @theforeman/candlepin-staging-<%= release %> <SRPM>` | ||
- [ ] Sign RPMs | ||
- [ ] VERSION=<%= release %> PROJECT=candlepin <%= rel_eng_script('generate_stage_repository') %> | ||
- [ ] VERSION=<%= release %> PROJECT=candlepin <%= rel_eng_script('sign_stage_rpms') %> | ||
- [ ] VERSION=<%= release %> PROJECT=candlepin <%= rel_eng_script('upload_stage_rpms') %> | ||
- [ ] [Run release pipeline](https://ci.theforeman.org/job/candlepin-<%= release %>-rpm-pipeline/) |