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

MDBF-779 SLES/OpenSUSE 15.5 bb config #519

Closed
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/build-opensuse.pip-based.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
include:
- image: opensuse/leap:15.5
platforms: linux/amd64
tag: opensuse15.5
tag: opensuse1505
nogalera: true

- image: opensuse/leap:15.6
platforms: linux/amd64
tag: opensuse15
tag: opensuse1506
nogalera: false

uses: ./.github/workflows/bbw_build_container_template.yml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-sles.pip-based.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
include:
- image: registry.suse.com/bci/bci-base:15.5
platforms: linux/amd64, linux/s390x
tag: sles15.5
tag: sles1505
nogalera: true

- image: registry.suse.com/bci/bci-base:15.6
platforms: linux/amd64, linux/s390x
tag: sles15
tag: sles1506
nogalera: false

uses: ./.github/workflows/bbw_build_container_template.yml
Expand Down
5 changes: 4 additions & 1 deletion constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,12 @@

supportedPlatforms["10.6"] += [
"aarch64-ubuntu-2204",
"amd64-opensuse-1505",
"amd64-sles-1505",
"amd64-ubuntu-2204",
"ppc64le-ubuntu-2204",
"s390x-ubuntu-2204",
"s390x-sles-1505",
"x86-debian-12",
]

Expand All @@ -164,7 +167,7 @@
"amd64-debian-12",
"amd64-debian-12-debug-embedded",
"amd64-fedora-40",
"amd64-opensuse-15",
"amd64-opensuse-1506",
"amd64-sles-15",
"amd64-ubuntu-2404",
"ppc64le-ubuntu-2404",
Expand Down
7 changes: 4 additions & 3 deletions master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -393,9 +393,10 @@ for builder in master_config["builders"]:
"amd64-debian-sid",
"aarch64-debian-sid",
"ppc64le-debian-sid",
"amd64-opensuse-15.5",
"amd64-sles-15.5",
"s390x-sles-15.5",
"amd64-opensuse-1505",
"amd64-opensuse-1506",
"amd64-sles-1505",
"s390x-sles-1505",
]:
tags += ["release_packages"]
c["builders"].append(
Expand Down
18 changes: 14 additions & 4 deletions os_info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,13 @@ openeuler-2403:
arch:
- amd64
- aarch64
opensuse-1505:
version_name: 15.5
arch:
- amd64
type: rpm
opensuse-15:
version_name: 15
opensuse-1506:
version_name: 15.6
arch:
- amd64
type: rpm
Expand Down Expand Up @@ -109,8 +113,14 @@ sles-12:
arch:
- s390x
type: rpm
sles-15:
version_name: 15
sles-1505:
version_name: 15.5
arch:
- amd64
# TEMP - currently short on hardware - s390x
type: rpm
sles-1506:
version_name: 15.6
arch:
- amd64
- s390x
Expand Down
Loading