Skip to content

Commit

Permalink
Only trigger bintar builders for the required branches
Browse files Browse the repository at this point in the history
Also, fix using the correct image for ubuntu 16.04
  • Loading branch information
vladbogo authored and fauust committed Mar 12, 2024
1 parent 13eb0a2 commit eff1606
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
22 changes: 16 additions & 6 deletions constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@
"amd64-debian-10-debug-embedded",
"amd64-debian-10-last-N-failed",
"amd64-debian-11-debug-ps-embedded",
"amd64-kvm-ubuntu-1210-bintar",
"amd64-kvm-ubuntu-1604-bintar",
"amd64-opensuse-15",
"amd64-rhel-7",
"amd64-rhel-8",
Expand All @@ -107,7 +105,14 @@
"x86-debian-12-fulltest",
]

supportedPlatforms["10.5"] = [
supportedPlatforms["10.5"] = supportedPlatforms["10.4"].copy()

# Add only 10.4 supported platforms
supportedPlatforms["10.4"] += [
"amd64-kvm-ubuntu-1210-bintar",
]

supportedPlatforms["10.5"] += [
"aarch64-centos-stream9",
"aarch64-debian-11",
"aarch64-fedora-38",
Expand All @@ -134,9 +139,15 @@
"s390x-sles-15",
"s390x-ubuntu-2004",
]
supportedPlatforms["10.5"] += supportedPlatforms["10.4"]

supportedPlatforms["10.6"] = [
supportedPlatforms["10.6"] = supportedPlatforms["10.5"].copy()

# Add only 10.5 supported platforms
supportedPlatforms["10.5"] += [
"amd64-kvm-ubuntu-1604-bintar",
]

supportedPlatforms["10.6"] += [
"aarch64-ubuntu-2204",
"amd64-almalinux-8",
"amd64-almalinux-9",
Expand All @@ -147,7 +158,6 @@
"s390x-ubuntu-2204",
"x86-debian-12",
]
supportedPlatforms["10.6"] += supportedPlatforms["10.5"]

supportedPlatforms["10.9"] = supportedPlatforms["10.6"].copy()

Expand Down
2 changes: 1 addition & 1 deletion master-bintars/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ f_1210_bintar = getBintarBuilder(
)
f_1604_bintar = getBintarBuilder(
name="amd64-kvm-ubuntu-1604-bintar",
kvm_image="vm-quantal-amd64",
kvm_image="vm-trusty-amd64",
cpu="host",
ramdisk=True,
port="10002",
Expand Down

0 comments on commit eff1606

Please sign in to comment.