Skip to content

Commit

Permalink
Bug 1720386 - Add a regex for Thunderbird update-verify-next version …
Browse files Browse the repository at this point in the history
…matching. r=taskgraph-reviewers,bhearsum

The update-verify-next test is new in Thunderbird 91. Since Thunderbird versions
do not include the esr suffix, a separate regex is needed.

Differential Revision: https://phabricator.services.mozilla.com/D119890
  • Loading branch information
jfx2006 committed Jul 14, 2021
1 parent 68d6c6f commit c0fc8c4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions taskcluster/taskgraph/transforms/update_verify_config.py
Expand Up @@ -35,6 +35,8 @@
"esr": r"'^\d+\.\d+(\.\d+)?esr$'",
# Previous esr versions, for update testing before we update users to esr91
"esr91-next": r"'^(52|60|68|78)+\.\d+(\.\d+)?esr$'",
# Previous Thunderbird major versions. Same idea as esrXX-next, no esr suffix
"thunderbird91-next": r"'^78\.\d+(\.\d+)?$",
}

MAR_CHANNEL_ID_OVERRIDE_REGEXES = {
Expand Down

0 comments on commit c0fc8c4

Please sign in to comment.