Skip to content

Commit

Permalink
Merge pull request #173 from mozbhearsum/birch
Browse files Browse the repository at this point in the history
Allow birch to use release-signing.
  • Loading branch information
bhearsum committed Jan 3, 2018
2 parents d98228d + ea4779c commit 483a38b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [6.0.1] - 2018-01-03
### Added
- Allow projects/birch to use project:releng:signing:cert:release-signing

## [6.0.0] - 2018-01-03
### Added
- `scriptworker.cot.verify.download_cot` now supports optional upstream artifacts
Expand Down
16 changes: 9 additions & 7 deletions scriptworker/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,12 @@
"^(?P<path>/mozilla-(central|unified))(/|$)",
"^(?P<path>/integration/(autoland|fx-team|mozilla-inbound))(/|$)",
"^(?P<path>/releases/mozilla-(beta|release|esr52))(/|$)",
# XXX remove /projects/maple when taskcluster relpro migration is
# tier1 and landed on mozilla-central
# XXX remove /projects/maple and birch when taskcluster relpro
# migration is tier1 and landed on mozilla-central
# XXX remove /projects/jamun when we no longer run staging releases
# from it
# XXX remove /projects/oak when we no longer test updates against it
"^(?P<path>/projects/(maple|jamun|oak))(/|$)",
"^(?P<path>/projects/(birch|maple|jamun|oak))(/|$)",
),
}), ),

Expand Down Expand Up @@ -228,14 +228,15 @@
'cot_restricted_trees': frozendict({
'firefox': frozendict({
# Which repos can perform release actions?
# XXX remove /projects/maple when taskcluster relpro migration is
# tier1 and landed on mozilla-central
# XXX remove /projects/maple and birch when taskcluster relpro
# migration is tier1 and landed on mozilla-central
# XXX remove /projects/jamun when we no longer run staging releases
# from it
'all-release-branches': (
"/releases/mozilla-beta",
"/releases/mozilla-release",
"/releases/mozilla-esr52",
"/projects/birch",
"/projects/jamun",
"/projects/maple",
),
Expand All @@ -254,8 +255,8 @@
),

# Which repos can do nightly signing?
# XXX remove /projects/maple when taskcluster relpro migration is
# tier1 and landed on mozilla-central
# XXX remove /projects/maple and birch when taskcluster relpro
# migration is tier1 and landed on mozilla-central
# XXX remove /projects/jamun when we no longer run staging releases
# from it
# XXX remove /projects/oak when we no longer test updates against it
Expand All @@ -265,6 +266,7 @@
"/releases/mozilla-beta",
"/releases/mozilla-release",
"/releases/mozilla-esr52",
"/projects/birch",
"/projects/jamun",
"/projects/oak",
"/projects/maple",
Expand Down
2 changes: 1 addition & 1 deletion scriptworker/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_version_string(version):

# 1}}}
# Semantic versioning 2.0.0 http://semver.org/
__version__ = (6, 0, 0)
__version__ = (6, 0, 1)
__version_string__ = get_version_string(__version__)


Expand Down

0 comments on commit 483a38b

Please sign in to comment.