Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

images: add fedora-42-boot and fedora-42-anaconda-payload for anaconda-webui repository #7421

Merged
merged 3 commits into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions image-trigger
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ REFRESH = {
"fedora-40": {},
"fedora-41": {},
"fedora-42": {},
"fedora-42-boot": {},
"fedora-coreos": {},
"fedora-rawhide": {},
"fedora-rawhide-boot": {},
Expand Down
1 change: 1 addition & 0 deletions images/fedora-42-anaconda-payload
1 change: 1 addition & 0 deletions images/fedora-42-boot
6 changes: 6 additions & 0 deletions images/scripts/fedora-42-anaconda-payload.bootstrap
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
set -eux

OUTPUT="$1"

PYTHONPATH=. python3 images/scripts/create-anaconda-payload --image=fedora-42 --output=$OUTPUT
8 changes: 8 additions & 0 deletions images/scripts/fedora-42-boot.bootstrap
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh
set -eux

OUTPUT="$1"

URL='https://download.fedoraproject.org/pub/fedora/linux/development/42/Server/x86_64/os/images/boot.iso'

curl -L "$URL" -o "$OUTPUT"
9 changes: 9 additions & 0 deletions lib/testmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ def contexts(image: str, *scenarios: Iterable[str], repo: str | None = None) ->
},
'rhinstaller/anaconda-webui': {
'main': [
*contexts('fedora-42-boot', ANACONDA_SCENARIOS),
*contexts('fedora-42-boot', ['efi'], ANACONDA_SCENARIOS),
*contexts('fedora-rawhide-boot', ANACONDA_SCENARIOS),
*contexts('fedora-rawhide-boot', ['efi'], ANACONDA_SCENARIOS),
],
Expand Down Expand Up @@ -255,10 +257,17 @@ def contexts(image: str, *scenarios: Iterable[str], repo: str | None = None) ->
"fedora-rawhide": [
*contexts("fedora-rawhide-boot", ANACONDA_SCENARIOS, repo='rhinstaller/anaconda-webui'),
],
# Anaconda builds in fedora-42 and runs tests in fedora-42-boot
"fedora-42": [
*contexts("fedora-42-boot", ANACONDA_SCENARIOS, repo='rhinstaller/anaconda-webui'),
],
# Anaconda payload updates can affect tests
"fedora-rawhide-anaconda-payload": [
*contexts("fedora-rawhide-boot", ANACONDA_SCENARIOS, repo='rhinstaller/anaconda-webui'),
],
"fedora-42-anaconda-payload": [
*contexts("fedora-42-boot", ANACONDA_SCENARIOS, repo='rhinstaller/anaconda-webui'),
],
}


Expand Down
Loading