You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Dont exclude tests from magical lists
* update default toolchain locations for windows pointing to latest supported versions
* Fixing build loop in build_release.py
* Fixing incorrect target name in release script, preventing traceback in this case
* Breaking up the uploading of build/test results.
It defaults to 1000 'projectRuns' per POST call, though this can be
modified via the '-l' parameter when invoking 'add-project-runs'.
* remove default path to GCC. Setting takes priority to PATH so this breaks linux and Mac
* revert is_supported chages in favor of alternative command line option
add_project_runs_parser.add_argument('-r', '--build-report', required=True, help='path to junit xml build report')
363
+
add_project_runs_parser.add_argument('-r', '--build-report', required=False, help='path to junit xml build report')
312
364
add_project_runs_parser.add_argument('-t', '--test-report', required=False, help='path to junit xml test report')
313
365
add_project_runs_parser.add_argument('-o', '--host-os', required=True, help='host os on which test was run')
366
+
add_project_runs_parser.add_argument('-l', '--limit', required=False, type=int, default=1000, help='Limit the number of project runs sent at a time to avoid HTTP errors (default is 1000)')
0 commit comments