Skip to content

Commit

Permalink
MDBF-782 Quick builders don't need "make package", default "make all"…
Browse files Browse the repository at this point in the history
… sufficient

Quick builders aren't saving packages or using them for tests.

As such theree doesn't need to be a tarball created.

The build default, target "all" is sufficent for the artifacts used
in MTR tests to be generated.
  • Loading branch information
grooverdan committed Sep 2, 2024
1 parent 701275b commit 2a5445d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common_factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def getBuildFactoryPreTest(build_type="RelWithDebInfo", additional_args=""):
additional_args=util.Property(
"additional_args", default=f"{additional_args}"
),
create_package=util.Property("create_package", default="package"),
create_package=util.Property("create_package", default="all"),
verbose_build=util.Property("verbose_build", default=""),
),
],
Expand Down
2 changes: 1 addition & 1 deletion master-protected-branches/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ c["builders"].append(
properties={
"build_type": "Debug",
"additional_args": "-DWITH_DBUG_TRACE=OFF",
"create_package": " ",
"create_package": "all",
"mtr_additional_args": '--skip-test="main\.show_analyze_json"',
},
factory=getQuickBuildFactory("debug-ps", mtrDbPool),
Expand Down

0 comments on commit 2a5445d

Please sign in to comment.