Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 4 additions & 3 deletions constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,12 +293,13 @@
if arch not in ["s390x", "x86"]:
BUILDERS_INSTALL.append(builder_name_autobake + "-install")
BUILDERS_UPGRADE.append(builder_name_autobake + "-minor-upgrade-all")
BUILDERS_UPGRADE.append(
builder_name_autobake + "-minor-upgrade-columnstore"
)
BUILDERS_UPGRADE.append(builder_name_autobake + "-major-upgrade")
BUILDERS_UPGRADE.append(builder_name_autobake + "-distro-upgrade")

if arch in ["amd64", "aarch64"]:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I my understanding correct that columnstore packages are not built for ppc64le as per server configuration?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes

BUILDERS_UPGRADE.append(
builder_name_autobake + "-minor-upgrade-columnstore"
)
BUILDERS_GALERA = list(
map(lambda x: "gal-" + "-".join(x.split("-")[:3]), BUILDERS_AUTOBAKE)
)
5 changes: 0 additions & 5 deletions scripts/deb-upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,6 @@ case $test_mode in
package_list=mariadb-server
;;
columnstore)
get_packages_file_mirror
Copy link
Collaborator

@RazvanLiviuVarzaru RazvanLiviuVarzaru Sep 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this test is useful, if it exists with an error.
Imagine on the server development side or when configuring the buildbot docker environment,
a mistake is made and columnstore packages are no longer generated.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

An error is good. This would have failed with cannot install columnstore at a later step, like any other failure to generate package, that is in the package list below.

if ! grep columnstore Packages >/dev/null; then
bb_log_warn "Columnstore was not found in packages, the test will not be run"
exit
fi
package_list="mariadb-server mariadb-plugin-columnstore"
;;
*)
Expand Down