| |
@@ -11,6 +11,18 @@
|
| |
* [{{ update.title or update.updateid }}]({{ update.url }}) for {%- for bug in update.bugs if bug.milestone_id == milestone and (bug.accepted_blocker or bug.accepted_0day or bug.accepted_fe) %} [#{{ bug.bugid }}]({{ bug.url }}){% endfor %}
|
| |
{%- endfor %}
|
| |
|
| |
+ == Releng commands ==
|
| |
+ {% if blocker_updates or fe_updates -%}
|
| |
+ Remeber to untag all builds in fN-compose:
|
| |
+ for i in `koji list-tagged f{{ release_num }}-compose --quiet | awk '{print $1}'`
|
| |
+ do
|
| |
+ untag_builds="${untag_builds} ${i}"
|
| |
+ done
|
| |
+ koji untag-pkg f{{ release_num }}-compose $untag_builds && unset untag_builds
|
| |
+
|
| |
+ and then tag the new builds:
|
| |
+ koji tag-build f{{ release_num }}-compose {% for update in fe_updates %}{{ update.title or update.updateid }}{{ " " if not loop.last else "" }}{%- endfor %}{{ " " if blocker_updates else "" }}{% for update in blocker_updates %}{{ update.title or update.updateid }}{{ " " if not loop.last else "" }}{%- endfor %}
|
| |
+ {% endif %}
|
| |
|
| |
### FREEZE PUSH ###
|
| |
|
| |
@@ -25,6 +37,11 @@
|
| |
{%- endfor %}
|
| |
{% endautoescape %}
|
| |
|
| |
+ == Releng commands ==
|
| |
+ {% if blocker_updates or fe_updates -%}
|
| |
+ Make sure all builds are pending stable
|
| |
+ sudo -u apache bodhi-push --builds {% for update in fe_updates if update.request == 'stable' %}{{ update.title or update.updateid }}{{ "," if not loop.last else "" }}{%- endfor %}{{ "," if blocker_updates else "" }}{% for update in blocker_updates if update.request == 'stable' %}{{ update.title or update.updateid }}{{ "," if not loop.last else "" }}{%- endfor %}
|
| |
+ {% endif %}
|
| |
|
| |
{% if bugs_with_deps -%}
|
| |
### THE ABOVE MIGHT NOT BE COMPLETE - CHECK BUG DEPENDENCIES ###
|
| |
Closes: https://pagure.io/fedora-qa/blockerbugs/pull-request/271
Co-authored-by: Kevin Fenzi kevin@scrye.com