OLD | NEW |
---|---|
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
5 | 5 |
6 import os | 6 import os |
7 import re | 7 import re |
8 import sys | 8 import sys |
9 | 9 |
10 import bot | 10 import bot |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
44 run([sys.executable, build_py, | 44 run([sys.executable, build_py, |
45 '-m%s' % mode, '--arch=%s' % arch, 'runtime']) | 45 '-m%s' % mode, '--arch=%s' % arch, 'runtime']) |
46 | 46 |
47 with bot.BuildStep('Create build tarball'): | 47 with bot.BuildStep('Create build tarball'): |
48 run(['tar', '-cjf', tarball, '--exclude=**/obj', | 48 run(['tar', '-cjf', tarball, '--exclude=**/obj', |
49 '--exclude=**/obj.host', '--exclude=**/obj.target', | 49 '--exclude=**/obj.host', '--exclude=**/obj.target', |
50 '--exclude=**/*analyzer*', 'out/', 'tools/testing/bin/']) | 50 '--exclude=**/*analyzer*', 'out/', 'tools/testing/bin/']) |
51 | 51 |
52 with bot.BuildStep('Upload build tarball'): | 52 with bot.BuildStep('Upload build tarball'): |
53 uri = "%s/%s" % (GCS_BUCKET, tarball) | 53 uri = "%s/%s" % (GCS_BUCKET, tarball) |
54 run([GSUTIL, 'cp', tarball, uri]) | 54 run([GSUTIL, 'cp', tarball, uri]) |
ricow1
2015/09/21 10:13:25
cp -a public-read?
Bill Hesse
2015/09/21 10:18:29
Done.
| |
55 run([GSUTIL, 'setacl', 'public-read', uri]) | 55 run([GSUTIL, 'acl', 'set', 'public-read', uri]) |
56 | 56 |
57 elif num_run == 2: | 57 elif num_run == 2: |
58 with bot.BuildStep('tests'): | 58 with bot.BuildStep('tests'): |
59 print "Please see the target device for results." | 59 print "Please see the target device for results." |
60 print "We no longer record/replay tests." | 60 print "We no longer record/replay tests." |
61 else: | 61 else: |
62 raise Exception("Invalid annotated steps run") | 62 raise Exception("Invalid annotated steps run") |
63 finally: | 63 finally: |
64 for path in temporary_files: | 64 for path in temporary_files: |
65 if os.path.exists(path): | 65 if os.path.exists(path): |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
114 total_shards = target_vm_pattern_match.group(4) | 114 total_shards = target_vm_pattern_match.group(4) |
115 target_builder(arch, mode, total_shards, shard_index) | 115 target_builder(arch, mode, total_shards, shard_index) |
116 else: | 116 else: |
117 raise Exception("Unknown builder name %s" % name) | 117 raise Exception("Unknown builder name %s" % name) |
118 | 118 |
119 if __name__ == '__main__': | 119 if __name__ == '__main__': |
120 try: | 120 try: |
121 sys.exit(main()) | 121 sys.exit(main()) |
122 except OSError as e: | 122 except OSError as e: |
123 sys.exit(e.errno) | 123 sys.exit(e.errno) |
OLD | NEW |