We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1bc914b + 4989260 commit 14c79a0Copy full SHA for 14c79a0
tools/ci/build_apps.py
@@ -92,7 +92,6 @@ def get_cmake_apps(
92
build_log_filename='build_log.txt',
93
size_json_filename='size.json',
94
check_warnings=True,
95
- preserve=True,
96
default_build_targets=default_build_targets,
97
manifest_files=[str(p) for p in Path(os.environ['ADF_PATH']).glob('**/.build-test-rules.yml')],
98
)
@@ -106,7 +105,7 @@ def main(args): # type: (argparse.Namespace) -> None
106
105
else:
107
apps_to_build = apps[:]
108
109
- print('Found %d apps after filtering', len(apps_to_build))
+ print(f'Found {len(apps_to_build)} apps after filtering')
110
print(
111
'Suggest setting the parallel count to %d for this build job',
112
len(apps_to_build) // APPS_BUILD_PER_JOB + 1,
0 commit comments