2017-10-16 18:22:47 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# Copyright 2017 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
|
|
"""Submit one or more try jobs."""
|
|
|
|
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import subprocess
|
|
|
|
import sys
|
2017-10-17 18:50:26 +00:00
|
|
|
import tempfile
|
2017-10-16 18:22:47 +00:00
|
|
|
|
|
|
|
|
2019-11-15 18:58:17 +00:00
|
|
|
BUCKET_SKIA_PRIMARY = 'skia/skia.primary'
|
|
|
|
BUCKET_SKIA_INTERNAL = 'skia-internal/skia.internal'
|
2017-10-16 18:22:47 +00:00
|
|
|
CHECKOUT_ROOT = os.path.realpath(os.path.join(
|
|
|
|
os.path.dirname(os.path.abspath(__file__)), os.pardir))
|
2017-10-17 13:18:18 +00:00
|
|
|
INFRA_BOTS = os.path.join(CHECKOUT_ROOT, 'infra', 'bots')
|
|
|
|
JOBS_JSON = os.path.join(INFRA_BOTS, 'jobs.json')
|
2017-10-17 18:50:26 +00:00
|
|
|
REPO_INTERNAL = 'https://skia.googlesource.com/internal_test.git'
|
|
|
|
TMP_DIR = os.path.join(tempfile.gettempdir(), 'sktry')
|
2017-10-17 13:18:18 +00:00
|
|
|
|
|
|
|
sys.path.insert(0, INFRA_BOTS)
|
|
|
|
|
2017-10-17 18:50:26 +00:00
|
|
|
import utils
|
|
|
|
|
|
|
|
|
|
|
|
def get_jobs(repo):
|
|
|
|
"""Obtain the list of jobs from the given repo."""
|
|
|
|
# Maintain a copy of the repo in the temp dir.
|
|
|
|
if not os.path.isdir(TMP_DIR):
|
|
|
|
os.mkdir(TMP_DIR)
|
|
|
|
with utils.chdir(TMP_DIR):
|
|
|
|
dirname = repo.split('/')[-1]
|
|
|
|
if not os.path.isdir(dirname):
|
|
|
|
subprocess.check_call([
|
|
|
|
utils.GIT, 'clone', '--mirror', repo, dirname])
|
|
|
|
with utils.chdir(dirname):
|
|
|
|
subprocess.check_call([utils.GIT, 'remote', 'update'])
|
|
|
|
jobs = json.loads(subprocess.check_output([
|
|
|
|
utils.GIT, 'show', 'master:infra/bots/jobs.json']))
|
|
|
|
return (BUCKET_SKIA_INTERNAL, jobs)
|
2017-10-16 18:22:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
# Parse arguments.
|
|
|
|
d = 'Helper script for triggering try jobs defined in %s.' % JOBS_JSON
|
|
|
|
parser = argparse.ArgumentParser(description=d)
|
|
|
|
parser.add_argument('--list', action='store_true', default=False,
|
|
|
|
help='Just list the jobs; do not trigger anything.')
|
2017-10-17 18:50:26 +00:00
|
|
|
parser.add_argument('--internal', action='store_true', default=False,
|
|
|
|
help=('If set, include internal jobs. You must have '
|
|
|
|
'permission to view internal repos.'))
|
2017-10-16 18:22:47 +00:00
|
|
|
parser.add_argument('job', nargs='?', default=None,
|
|
|
|
help='Job name or regular expression to match job names.')
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2017-10-17 18:50:26 +00:00
|
|
|
# Load and filter the list of jobs.
|
2017-10-17 13:18:18 +00:00
|
|
|
jobs = []
|
2017-10-16 18:22:47 +00:00
|
|
|
with open(JOBS_JSON) as f:
|
2017-10-17 13:18:18 +00:00
|
|
|
jobs.append((BUCKET_SKIA_PRIMARY, json.load(f)))
|
2017-10-17 18:50:26 +00:00
|
|
|
if args.internal:
|
|
|
|
jobs.append(get_jobs(REPO_INTERNAL))
|
2017-10-16 18:22:47 +00:00
|
|
|
if args.job:
|
2017-10-18 16:53:49 +00:00
|
|
|
filtered_jobs = []
|
2017-10-17 13:18:18 +00:00
|
|
|
for bucket, job_list in jobs:
|
|
|
|
filtered = [j for j in job_list if re.search(args.job, j)]
|
|
|
|
if len(filtered) > 0:
|
2017-10-18 16:53:49 +00:00
|
|
|
filtered_jobs.append((bucket, filtered))
|
|
|
|
jobs = filtered_jobs
|
2017-10-16 18:22:47 +00:00
|
|
|
|
|
|
|
# Display the list of jobs.
|
|
|
|
if len(jobs) == 0:
|
|
|
|
print 'Found no jobs matching "%s"' % repr(args.job)
|
|
|
|
sys.exit(1)
|
2017-10-17 13:18:18 +00:00
|
|
|
count = 0
|
|
|
|
for bucket, job_list in jobs:
|
|
|
|
count += len(job_list)
|
|
|
|
print 'Found %d jobs:' % count
|
|
|
|
for bucket, job_list in jobs:
|
|
|
|
print ' %s:' % bucket
|
|
|
|
for j in job_list:
|
|
|
|
print ' %s' % j
|
2017-10-16 18:22:47 +00:00
|
|
|
if args.list:
|
|
|
|
return
|
|
|
|
|
2017-12-11 18:18:52 +00:00
|
|
|
if count > 1:
|
|
|
|
# Prompt before triggering jobs.
|
|
|
|
resp = raw_input('\nDo you want to trigger these jobs? (y/n or i for '
|
|
|
|
'interactive): ')
|
|
|
|
print ''
|
|
|
|
if resp != 'y' and resp != 'i':
|
|
|
|
sys.exit(1)
|
|
|
|
if resp == 'i':
|
|
|
|
filtered_jobs = []
|
|
|
|
for bucket, job_list in jobs:
|
|
|
|
new_job_list = []
|
|
|
|
for j in job_list:
|
|
|
|
incl = raw_input(('Trigger %s? (y/n): ' % j))
|
|
|
|
if incl == 'y':
|
|
|
|
new_job_list.append(j)
|
|
|
|
if len(new_job_list) > 0:
|
|
|
|
filtered_jobs.append((bucket, new_job_list))
|
|
|
|
jobs = filtered_jobs
|
2017-10-16 18:22:47 +00:00
|
|
|
|
|
|
|
# Trigger the try jobs.
|
2017-10-17 13:18:18 +00:00
|
|
|
for bucket, job_list in jobs:
|
|
|
|
cmd = ['git', 'cl', 'try', '-B', bucket]
|
|
|
|
for j in job_list:
|
|
|
|
cmd.extend(['-b', j])
|
|
|
|
try:
|
|
|
|
subprocess.check_call(cmd)
|
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
# Output from the command will fall through, so just exit here rather than
|
|
|
|
# printing a stack trace.
|
|
|
|
sys.exit(1)
|
2017-10-16 18:22:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|