fix build command on windows
This commit is contained in:
parent
23fecd6765
commit
efaa8b73e6
2 changed files with 7 additions and 7 deletions
|
@ -53,12 +53,12 @@ if __name__ == '__main__':
|
||||||
'\\$exit=\\$?;'
|
'\\$exit=\\$?;'
|
||||||
'sccache --show-stats;'
|
'sccache --show-stats;'
|
||||||
'if (\\$exit) {'
|
'if (\\$exit) {'
|
||||||
' echo "success";'
|
' echo success;'
|
||||||
' exit 0; } '
|
' exit 0; } '
|
||||||
'else {'
|
'else {'
|
||||||
' echo "failure";'
|
' echo failure;'
|
||||||
' exit 1;'
|
' exit 1;'
|
||||||
'}',
|
'}"',
|
||||||
],
|
],
|
||||||
'artifact_paths': ['artifacts/**/*', '*_result.json'],
|
'artifact_paths': ['artifacts/**/*', '*_result.json'],
|
||||||
'agents': {'queue': f'{queue_prefix}windows'},
|
'agents': {'queue': f'{queue_prefix}windows'},
|
||||||
|
|
|
@ -45,16 +45,16 @@ if __name__ == '__main__':
|
||||||
'rm -rf %SRC%',
|
'rm -rf %SRC%',
|
||||||
'git clone --depth 1 --branch %scripts_branch% https://github.com/google/llvm-premerge-checks.git %SRC%',
|
'git clone --depth 1 --branch %scripts_branch% https://github.com/google/llvm-premerge-checks.git %SRC%',
|
||||||
'powershell -command "%SRC%/scripts/premerge_checks.py '
|
'powershell -command "%SRC%/scripts/premerge_checks.py '
|
||||||
'--projects="clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;flang;openmp;polly;compiler-rt"; '
|
'--projects=\'clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;flang;openmp;polly;compiler-rt\'; '
|
||||||
'\\$exit=\\$?;'
|
'\\$exit=\\$?;'
|
||||||
'sccache --show-stats;'
|
'sccache --show-stats;'
|
||||||
'if (\\$exit) {'
|
'if (\\$exit) {'
|
||||||
' echo "success";'
|
' echo success;'
|
||||||
' exit 0; } '
|
' exit 0; } '
|
||||||
'else {'
|
'else {'
|
||||||
' echo "failure";'
|
' echo failure;'
|
||||||
' exit 1;'
|
' exit 1;'
|
||||||
'}',
|
'}"',
|
||||||
],
|
],
|
||||||
'artifact_paths': ['artifacts/**/*', '*_result.json'],
|
'artifact_paths': ['artifacts/**/*', '*_result.json'],
|
||||||
'agents': {'queue': f'{queue_prefix}windows'},
|
'agents': {'queue': f'{queue_prefix}windows'},
|
||||||
|
|
Loading…
Reference in a new issue