Skip to content

Commit 14c79a0

Browse files
committed
Merge branch 'ci/delete_preserve_param' into 'master'
ci: Delete preserve param in build_apps.py See merge request adf/esp-adf-internal!1343
2 parents 1bc914b + 4989260 commit 14c79a0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/ci/build_apps.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ def get_cmake_apps(
9292
build_log_filename='build_log.txt',
9393
size_json_filename='size.json',
9494
check_warnings=True,
95-
preserve=True,
9695
default_build_targets=default_build_targets,
9796
manifest_files=[str(p) for p in Path(os.environ['ADF_PATH']).glob('**/.build-test-rules.yml')],
9897
)
@@ -106,7 +105,7 @@ def main(args): # type: (argparse.Namespace) -> None
106105
else:
107106
apps_to_build = apps[:]
108107

109-
print('Found %d apps after filtering', len(apps_to_build))
108+
print(f'Found {len(apps_to_build)} apps after filtering')
110109
print(
111110
'Suggest setting the parallel count to %d for this build job',
112111
len(apps_to_build) // APPS_BUILD_PER_JOB + 1,

0 commit comments

Comments
 (0)