Skip to content

Commit

Permalink
Missing var for galera packages saving
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Oct 24, 2023
1 parent f7ebe62 commit 185ce5e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions docker-compose/.env
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ TITLE_URL=https://github.com/MariaDB/server
BUILDMASTER_URL=https://buildbot.mariadb.org/
MQ_ROUTER_URL=ws://localhost:8085/ws
MASTER_PACKAGES_DIR="/mnt/autofs/master_packages"
GALERA_PACKAGES_DIR="/mnt/autofs/galera_packages"
ARTIFACTS_URL="https://ci.mariadb.org"
1 change: 1 addition & 0 deletions docker-compose/.env.dev
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ BUILDMASTER_URL=https://buildbot.dev.mariadb.org/
BUILDMASTER_WG_IP=100.64.101.1
MQ_ROUTER_URL=ws://crossbar:8080/ws
MASTER_PACKAGES_DIR="/mnt/autofs/master_dev_packages"
GALERA_PACKAGES_DIR="/mnt/autofs/galera_dev_packages"
ARTIFACTS_URL="https://ci.dev.mariadb.org"
5 changes: 4 additions & 1 deletion master-galera/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ c["schedulers"].append(schedulerTrigger)
c["workers"] = []

# Docker workers
GALERA_PACKAGES = os.getenv(
"GALERA_PACKAGES_DIR", default="/mnt/autofs/galera_packages"
)

workers = {}

Expand All @@ -139,7 +142,7 @@ def addWorker(
volumes=[
"/srv/buildbot/ccache:/mnt/ccache",
"/srv/buildbot/packages:/mnt/packages",
"/mnt/autofs/galera_packages/:/packages",
GALERA_PACKAGES + "/:/packages",
],
)

Expand Down

0 comments on commit 185ce5e

Please sign in to comment.