Skip to content

Commit

Permalink
BB - DEV | DockerLibrary, Wordpress - builders
Browse files Browse the repository at this point in the history
Support for #511
Master-NonLatent defines only one builder and one worker for dockerlibrary and wordpress. Rhel8 for Prod and Rhel9 for Dev.

So only one builder should be triggered.
  • Loading branch information
RazvanLiviuVarzaru committed Aug 14, 2024
1 parent d664b4d commit 085740d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions constants.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import os

import yaml

DEVELOPMENT_BRANCH = "11.3"
Expand Down Expand Up @@ -40,13 +42,19 @@

# Special builders triggering
builders_big = ["amd64-ubuntu-2004-bigtest"]
builders_dockerlibrary = ["amd64-rhel8-dockerlibrary"]
builders_eco = [
"amd64-debian-10-eco-mysqljs",
"amd64-debian-10-eco-pymysql",
"amd64-ubuntu-2004-eco-php",
]
builders_wordpress = ["amd64-rhel8-wordpress"]

if os.getenv("ENVIRON") == "DEV":
builders_wordpress = ["amd64-rhel9-wordpress"]
builders_dockerlibrary = ["amd64-rhel9-dockerlibrary"]
else:
builders_wordpress = ["amd64-rhel8-wordpress"]
builders_dockerlibrary = ["amd64-rhel8-dockerlibrary"]

builders_galera_mtr = [
"aarch64-debian-12",
"amd64-fedora-39",
Expand Down

0 comments on commit 085740d

Please sign in to comment.