Libfuzzer tests are flaky, disabling them for now
This commit is contained in:
parent
abe5c8991b
commit
0bb932732e
2 changed files with 4 additions and 6 deletions
|
@ -3,8 +3,6 @@ import json
|
||||||
import argparse
|
import argparse
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
# print(json.loads(re.json()))
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
parser = argparse.ArgumentParser(description='Run sample build on buildkite.')
|
parser = argparse.ArgumentParser(description='Run sample build on buildkite.')
|
||||||
parser.add_argument('--dryrun', action='store_true')
|
parser.add_argument('--dryrun', action='store_true')
|
||||||
|
@ -18,14 +16,13 @@ if __name__ == '__main__':
|
||||||
'ph_log_level': 'DEBUG',
|
'ph_log_level': 'DEBUG',
|
||||||
#'ph_skip_linux': 'skip',
|
#'ph_skip_linux': 'skip',
|
||||||
#'ph_linux_agents': '{"queue": "linux-google-test"}',
|
#'ph_linux_agents': '{"queue": "linux-google-test"}',
|
||||||
'ph_linux_agents': '{"queue": "linux"}',
|
'ph_linux_agents': '{"queue": "linux-test"}',
|
||||||
# 'ph_linux_agents': '{"queue": "linux-clang15-test"}',
|
# 'ph_linux_agents': '{"queue": "linux-clang15-test"}',
|
||||||
# 'ph_skip_windows': 'skip',
|
# 'ph_skip_windows': 'skip',
|
||||||
'ph_windows_agents': f'{{"name": "win-dev", "queue": "windows-test"}}',
|
#'ph_windows_agents': f'{{"name": "win-dev", "queue": "windows-test"}}',
|
||||||
# 'ph_windows_agents': f'{{"queue": "windows"}}',
|
'ph_windows_agents': '{"queue": "windows-test"}',
|
||||||
# 'ph_scripts_refspec': 'windows-vscmd',
|
# 'ph_scripts_refspec': 'windows-vscmd',
|
||||||
'ph_projects': 'all',
|
'ph_projects': 'all',
|
||||||
'ph_skip_windows': 'skip',
|
|
||||||
# 'ph_windows_agents': f'{{"name": "", "queue": "{queue}"}}',
|
# 'ph_windows_agents': f'{{"name": "", "queue": "{queue}"}}',
|
||||||
}})
|
}})
|
||||||
print(d)
|
print(d)
|
||||||
|
|
|
@ -22,6 +22,7 @@ arguments:
|
||||||
- '-D CMAKE_BUILD_TYPE=Release'
|
- '-D CMAKE_BUILD_TYPE=Release'
|
||||||
- '-D LLVM_ENABLE_ASSERTIONS=ON'
|
- '-D LLVM_ENABLE_ASSERTIONS=ON'
|
||||||
- '-D LLVM_BUILD_EXAMPLES=ON'
|
- '-D LLVM_BUILD_EXAMPLES=ON'
|
||||||
|
- '-D COMPILER_RT_BUILD_LIBFUZZER=OFF' # Libfuzzer tests are flaky.
|
||||||
- '-D LLVM_LIT_ARGS="-v --xunit-xml-output test-results.xml"'
|
- '-D LLVM_LIT_ARGS="-v --xunit-xml-output test-results.xml"'
|
||||||
linux:
|
linux:
|
||||||
# CCACHE is enabled in script iff environment variable `CCACHE_DIR` is set
|
# CCACHE is enabled in script iff environment variable `CCACHE_DIR` is set
|
||||||
|
|
Loading…
Reference in a new issue