-
Notifications
You must be signed in to change notification settings - Fork 141
Configuring Test Matrix
Endi S. Dewata edited this page Jun 15, 2021
·
10 revisions
By default the CI will perform tests against Fedora 33 and 34. Sometimes it’s necessary to test other Fedora versions (e.g. Rawhide) or to limit the tests (e.g. to Fedora 34 only) to shorten the development time. This can be done by configuring the test matrix in a secret called MATRIX
in the forked project. The value needs to be specified in JSON format, and double quotes needs to be escaped. To reset the test matrix simply remove the secret.
-
Go to Settings → Secrets.
-
Click New repository secret.
-
Enter
MATRIX
as the secret name. -
Enter the test matrix as the secret value (see examples below).
-
Click Add secret
To test Fedora Rawhide:
{\"os\": [\"rawhide\"]}
To test Fedora 34:
{\"os\": [\"34\"]}
Tip
|
To find a page in the Wiki, enter the keywords in search field, press Enter, then click Wikis. |