Skip to content

Commit

Permalink
MDBF-819 - debian 11 arm builder in protected branches
Browse files Browse the repository at this point in the history
we need an arm builder for all supported MariaDB Server versions in Protected Branches
  • Loading branch information
RazvanLiviuVarzaru committed Nov 25, 2024
1 parent 9d69b92 commit b914dee
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
# Defines what builders report status to GitHub
github_status_builders = [
"aarch64-macos-compile-only",
"aarch64-debian-11",
"amd64-debian-12",
"amd64-debian-12-debug-embedded",
"amd64-debian-12-deb-autobake",
Expand Down
26 changes: 26 additions & 0 deletions master-protected-branches/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,18 @@ for w_name in ["hz-bbw"]:
save_packages=False,
)

for w_name in ["aarch64-bbw"]:
jobs = 7
for i in [6, 7]:
addWorker(
w_name,
i,
"-debian-11",
os.getenv("CONTAINER_REGISTRY_URL", default="quay.io/mariadb-foundation/bb-worker:") + "debian11",
jobs=jobs,
save_packages=True,
)

####### FACTORY CODE

## f_tarball - create source tarball
Expand Down Expand Up @@ -539,6 +551,20 @@ c["builders"].append(
)
)

c["builders"].append(
util.BuilderConfig(
name="aarch64-debian-11",
workernames=workers["aarch64-bbw-docker-debian-11"],
tags=["Debian", "quick", "gcc", "protected"],
collapseRequests=True,
nextBuild=nextBuild,
canStartBuild=canStartBuild,
locks=getLocks,
properties={"mtr_additional_args": protected_branches_mtr_additional_args},
factory=getQuickBuildFactory("nm", mtrDbPool),
)
)

c["builders"].append(
util.BuilderConfig(
name="amd64-fedora-40",
Expand Down

0 comments on commit b914dee

Please sign in to comment.