summaryrefslogtreecommitdiff
path: root/ci/build_test_suites.py
diff options
context:
space:
mode:
Diffstat (limited to 'ci/build_test_suites.py')
-rw-r--r--ci/build_test_suites.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/ci/build_test_suites.py b/ci/build_test_suites.py
index 24419a7103..5798f2b741 100644
--- a/ci/build_test_suites.py
+++ b/ci/build_test_suites.py
@@ -80,6 +80,9 @@ def build_affected_modules(args: argparse.Namespace):
# Call the build command with everything.
build_command = base_build_command(args)
build_command.extend(modules_to_build)
+ # When not building general-tests we also have to build the general tests
+ # shared libs.
+ build_command.append('general-tests-shared-libs')
run_command(build_command, print_output=True)