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

- Add 15 SP3 repos for on-demand testing #302

Merged
merged 2 commits into from
May 26, 2021
Merged
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
18 changes: 18 additions & 0 deletions usr/share/lib/img_proof/tests/SLES/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,19 @@
BASE_15_SP2_SAP = SLE_15_SP2_SAP + SLE_15_SP2_BASE + SLE_15_SP2_MODULES
BASE_15_SP2_HPC = SLE_15_SP2_BASE + SLE_15_SP2_HPC

BASE_15_SP3 = [
repo.replace('SP2', 'SP3') for repo in BASE_15_SP2
]
BASE_15_SP3_SAP = [
repo.replace('SP2', 'SP3') for repo in BASE_15_SP2_SAP
]
BASE_15_SP3_HPC = [
repo.replace('SP2', 'SP3') for repo in BASE_15_SP2_HPC
]
SLE_15_SP3_X86_64_MODULES = [
repo.replace('SP2', 'SP3') for repo in SLE_15_SP2_X86_64_MODULES
]

SLES_REPOS = {
'11.4-X86_64': SLE_11_SP4_BASE + SLE_11_SP4_MODULES,
'12-X86_64': SLE_12_BASE + SLE_12_MODULES,
Expand Down Expand Up @@ -539,6 +552,11 @@
'15-SP2-X86_64': BASE_15_SP2 + SLE_15_SP2_X86_64_MODULES,
'15-SP2-X86_64-SAP': BASE_15_SP2_SAP + SLE_15_SP2_X86_64_MODULES,
'15-SP2-X86_64-HPC': BASE_15_SP2_HPC,
'15-SP3-AARCH64': BASE_15_SP3,
'15-SP3-AARCH64-SAP': BASE_15_SP3_SAP,
'15-SP3-X86_64': BASE_15_SP3 + SLE_15_SP3_X86_64_MODULES,
'15-SP3-X86_64-SAP': BASE_15_SP3_SAP + SLE_15_SP3_X86_64_MODULES,
'15-SP3-X86_64-HPC': BASE_15_SP3_HPC,
}


Expand Down