1
0
Fork 0

Merge pull request #208 from google/fix-win-build

fix build command on windows
This commit is contained in:
Mikhail Goncharov 2020-07-07 15:15:45 +02:00 committed by GitHub
commit a0898eaf27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -53,12 +53,12 @@ if __name__ == '__main__':
'\\$exit=\\$?;'
'sccache --show-stats;'
'if (\\$exit) {'
' echo "success";'
' echo success;'
' exit 0; } '
'else {'
' echo "failure";'
' echo failure;'
' exit 1;'
'}',
'}"',
],
'artifact_paths': ['artifacts/**/*', '*_result.json'],
'agents': {'queue': f'{queue_prefix}windows'},

View file

@ -45,16 +45,16 @@ if __name__ == '__main__':
'rm -rf %SRC%',
'git clone --depth 1 --branch %scripts_branch% https://github.com/google/llvm-premerge-checks.git %SRC%',
'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=\\$?;'
'sccache --show-stats;'
'if (\\$exit) {'
' echo "success";'
' echo success;'
' exit 0; } '
'else {'
' echo "failure";'
' echo failure;'
' exit 1;'
'}',
'}"',
],
'artifact_paths': ['artifacts/**/*', '*_result.json'],
'agents': {'queue': f'{queue_prefix}windows'},