diff options
author | 2025-01-10 20:35:11 -0800 | |
---|---|---|
committer | 2025-01-10 20:35:11 -0800 | |
commit | aa4ee4b76677364adb834e5fcac66055c52f40e4 (patch) | |
tree | 70e35aa0fb7e50882c5a646dda62a4a193e174d8 /ci | |
parent | fef026e1694791c16ef9ebfd812154174fb99f34 (diff) |
Log the build command that we are executing
Change-Id: Ic31b75103ff6eba9566367ac22d570f66ce7d1ee
Test: presubmit
Bug: None
Diffstat (limited to 'ci')
-rw-r--r-- | ci/build_test_suites.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/build_test_suites.py b/ci/build_test_suites.py index cdcba5a87e..0ab6dabae0 100644 --- a/ci/build_test_suites.py +++ b/ci/build_test_suites.py @@ -293,7 +293,7 @@ def execute_build_plan(build_plan: BuildPlan): build_command.append(get_top().joinpath(SOONG_UI_EXE_REL_PATH)) build_command.append('--make-mode') build_command.extend(build_plan.build_targets) - + logging.info(f'Running build command: {build_command}') try: run_command(build_command) except subprocess.CalledProcessError as e: |