299b882f20
Adds procdump_win asset. Enable ProcDump for some of the jobs failing in skia:7177 as a test case. If it has no ill effect, we can proceed with enabling it for all Win bots (and remove "ProcDump" tag). Bug: skia:7626, skia:7177 Change-Id: I50c67ecfca86fe0c6d91d5f970f81485cc9cfd0a Reviewed-on: https://skia-review.googlesource.com/113265 Commit-Queue: Ben Wagner <benjaminwagner@google.com> Reviewed-by: Eric Boren <borenet@google.com>
43 lines
951 B
Python
Executable File
43 lines
951 B
Python
Executable File
#!/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.
|
|
|
|
|
|
"""Create the asset and upload it."""
|
|
|
|
|
|
import argparse
|
|
import common
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
import utils
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--gsutil')
|
|
args = parser.parse_args()
|
|
|
|
with utils.tmp_dir():
|
|
cwd = os.getcwd()
|
|
create_script = os.path.join(common.FILE_DIR, 'create.py')
|
|
upload_script = os.path.join(common.FILE_DIR, 'upload.py')
|
|
|
|
try:
|
|
subprocess.check_call(['python', create_script, '-t', cwd])
|
|
cmd = ['python', upload_script, '-t', cwd]
|
|
if args.gsutil:
|
|
cmd.extend(['--gsutil', args.gsutil])
|
|
subprocess.check_call(cmd)
|
|
except subprocess.CalledProcessError:
|
|
# Trap exceptions to avoid printing two stacktraces.
|
|
sys.exit(1)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|