1
0
Fork 0
llvm-premerge-checks/scripts/buildkite/sample_build.py
2023-04-21 10:15:01 +02:00

42 lines
1.4 KiB
Python

import os
import json
import argparse
import requests
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Run sample build on buildkite.')
parser.add_argument('--dryrun', action='store_true')
args = parser.parse_args()
d = json.dumps({
'branch': 'main',
'commit': '43b38696aa038a83b12850aab25377650e301cde',
'env': {
'ph_log_level': 'DEBUG',
#'ph_skip_linux': 'skip',
'ph_linux_agents': '{"queue": "linux-google-test"}',
#'ph_linux_agents': '{"queue": "linux-test"}',
# 'ph_linux_agents': '{"queue": "linux-clang15-test"}',
'ph_skip_windows': 'skip',
#'ph_windows_agents': f'{{"name": "win-dev", "queue": "windows-test"}}',
# 'ph_windows_agents': '{"queue": "windows-test"}',
# 'ph_scripts_refspec': 'windows-vscmd',
# 'ph_projects': 'all',
'ph_skip_generated': 'skip',
# 'ph_windows_agents': f'{{"name": "", "queue": "{queue}"}}',
}})
print(d)
if (args.dryrun):
exit(0)
token = os.getenv('BUILDKITE_API_TOKEN')
if token is None:
print("'BUILDKITE_API_TOKEN' environment variable is not set")
exit(1)
print(f"token {token}")
re = requests.post('https://api.buildkite.com/v2/organizations/llvm-project/pipelines/llvm-main/builds',
data=d,
headers={'Authorization': f'Bearer {token}'})
print(re.status_code)
j = re.json()
print(j['web_url'])