From Fedora Project Wiki

(→‎Implementation: drop command for pre-F22)
(make changes proposed in 2022 to allow editions/spins/labs to declare critpath content, update info on critpath generation and viewing)
Line 5: Line 5:
= Background =
= Background =


Previously, documented policy treated every package the same.  While good for uniformity, in reality certain packages require extra attention and care when updating and testing.  These packages have potential to break the critical path of use of our Fedora distribution.  As part of a [[Fedora Activity Day]], several contributors proposed a critical set of actions that must not be broken.  The packages required to sustain these actions make up the ''critical path''.
Previously, documented policy treated every package the same.  While good for uniformity, in reality certain packages require extra attention and care when updating and testing.  These packages have potential to break the critical path of use of our Fedora distribution.  As part of a [[Fedora Activity Day]], several contributors proposed a critical set of actions that must not be broken.  The packages required to sustain these actions initially made up the ''critical path''. Later, it was agreed that the maintainers of Editions, spins, and labs can also declare packages that provide other key functionality to be part of the ''critical path'' for that Edition, spin or lab.


= Actions =
= Actions =


Packages within the ''critical path'' are required to perform the most fundamental actions on a system. Those actions include:
Packages required to perform the most fundamental actions on a system are always considered part of the ''critical path''. Those actions include:
* graphical network install
* graphical network install
* post-install booting
* post-install booting
Line 20: Line 20:
* compose new trees
* compose new trees
* compose live
* compose live
and other actions considered by an Edition, spin or lab to be 'fundamental'.


= Implementation =
= Implementation =
Line 25: Line 26:
A set of groups are defined in the {{filename|comps.xml}} file to include packages required for the critical use cases listed above.  Since package dependencies change regularly, the {{filename|comps.xml}} groups are then used to dynamically generate the list of packages.
A set of groups are defined in the {{filename|comps.xml}} file to include packages required for the critical use cases listed above.  Since package dependencies change regularly, the {{filename|comps.xml}} groups are then used to dynamically generate the list of packages.


The critical path package groups in {{filename|comps.xml}} are listed below:
The package groups in {{filename|comps.xml}} that make up the critical path are defined in [https://pagure.io/releng/blob/main/f/scripts/critpath.py#_38 the generation script]. As of 2023-08, the list is:
<pre>@core
<pre>@core
@critical-path-anaconda
@critical-path-apps
@critical-path-base
@critical-path-base
@critical-path-build
@critical-path-compose
@critical-path-deepin-desktop
@critical-path-gnome
@critical-path-gnome
@critical-path-apps
@critical-path-kde
@critical-path-kde
@critical-path-lxde
@critical-path-lxde
@critical-path-lxqt
@critical-path-server
@critical-path-standard
@critical-path-xfce</pre>
@critical-path-xfce</pre>


Line 42: Line 50:
= Where can I find the ''critical path''? =
= Where can I find the ''critical path''? =


The critical path package list for all releases is stored in [https://pdc.fedoraproject.org/ PDC].
The critical path package lists for all releases are generated daily and stored in [https://bodhi.fedoraproject.org/ Bodhi]. There is not currently a convenient way to view them from the Bodhi web UI, but you can check out the [https://pagure.io/releng releng git repository]:
 
The most recent lists of critical path packages are available at:


* [https://pdc.fedoraproject.org/rest_api/v1/component-branches/?name=master&active=true&critical_path=true&type=rpm Rawhide]
<pre>git clone https://pagure.io/releng.git</pre>
* [https://pdc.fedoraproject.org/rest_api/v1/component-branches/?name=f{{FedoraVersionNumber|next}}&active=true&critical_path=true&type=rpm {{FedoraVersion|long|next}} (if branched)]
* [https://pdc.fedoraproject.org/rest_api/v1/component-branches/?name=f{{FedoraVersionNumber}}&active=true&critical_path=true&type=rpm {{FedoraVersion|long}}]


Read API documentation [https://pdc.fedoraproject.org/rest_api/v1/component-branches/ here].
and run the script locally:


<!--
<pre>./releng/scripts/critpath.py 38</pre>
SAMPLE USAGE of the Parser Function #time -- See http://www.mediawiki.org/wiki/Help:Extension:ParserFunctions#.23time


{{#time: d | {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} - 1 day}}
to generate the critical path data for Fedora 38. This will produce files {{filename|critpath.txt}} (containing a flat list of all critical path packages) and {{filename|critpath.json}} (JSON containing the critical path packages by group).
* Branched (aka {{FedoraVersion|long|next}}) - [http://kojipkgs.fedoraproject.org/mash/branched-{{CURRENTYEAR}}{{CURRENTMONTH}}{{#time: d | {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} - 1 day}}/logs/critpath.txt http://kojipkgs.fedoraproject.org/mash/branched-{{CURRENTYEAR}}{{CURRENTMONTH}}{{#time: d | {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} - 1 day}}/logs/critpath.txt]
* Rawhide - [http://kojipkgs.fedoraproject.org/mash/rawhide-{{CURRENTYEAR}}{{CURRENTMONTH}}{{#time: d | {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} - 1 day}}/logs/critpath.txt http://kojipkgs.fedoraproject.org/mash/rawhide-{{CURRENTYEAR}}{{CURRENTMONTH}}{{#time: d | {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} - 1 day}}/logs/critpath.txt]
-->

Revision as of 17:06, 16 August 2023

For information on the proposal, see Critical Path Packages Proposal.

A critical path package is a specially managed package in Fedora that provides some essential or core functionality. Updates for critical path packages must undergo additional verification before they can be distributed to the community at large.

Background

Previously, documented policy treated every package the same. While good for uniformity, in reality certain packages require extra attention and care when updating and testing. These packages have potential to break the critical path of use of our Fedora distribution. As part of a Fedora Activity Day, several contributors proposed a critical set of actions that must not be broken. The packages required to sustain these actions initially made up the critical path. Later, it was agreed that the maintainers of Editions, spins, and labs can also declare packages that provide other key functionality to be part of the critical path for that Edition, spin or lab.

Actions

Packages required to perform the most fundamental actions on a system are always considered part of the critical path. Those actions include:

  • graphical network install
  • post-install booting
  • decrypt encrypted filesystems
  • graphics
  • login
  • networking
  • get updates
  • minimal buildroot
  • compose new trees
  • compose live

and other actions considered by an Edition, spin or lab to be 'fundamental'.

Implementation

A set of groups are defined in the comps.xml file to include packages required for the critical use cases listed above. Since package dependencies change regularly, the comps.xml groups are then used to dynamically generate the list of packages.

The package groups in comps.xml that make up the critical path are defined in the generation script. As of 2023-08, the list is:

@core
@critical-path-anaconda
@critical-path-apps
@critical-path-base
@critical-path-build
@critical-path-compose
@critical-path-deepin-desktop
@critical-path-gnome
@critical-path-kde
@critical-path-lxde
@critical-path-lxqt
@critical-path-server
@critical-path-standard
@critical-path-xfce

You can list the packages in these groups with the following command, replacing 'critical-path-base' with the name of the group you're interested in:

dnf group info critical-path-base

For more information on comps.xml see how to use and edit comps.xml for package groups.

Where can I find the critical path?

The critical path package lists for all releases are generated daily and stored in Bodhi. There is not currently a convenient way to view them from the Bodhi web UI, but you can check out the releng git repository:

git clone https://pagure.io/releng.git

and run the script locally:

./releng/scripts/critpath.py 38

to generate the critical path data for Fedora 38. This will produce files critpath.txt (containing a flat list of all critical path packages) and critpath.json (JSON containing the critical path packages by group).