| 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 29 matching lines...) Expand all Loading... |
| 40 try: | 40 try: |
| 41 num_run = int(os.environ['BUILDBOT_ANNOTATED_STEPS_RUN']) | 41 num_run = int(os.environ['BUILDBOT_ANNOTATED_STEPS_RUN']) |
| 42 if num_run == 1: | 42 if num_run == 1: |
| 43 with bot.BuildStep('Build %s %s' % (arch, mode)): | 43 with bot.BuildStep('Build %s %s' % (arch, mode)): |
| 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/']) |
| 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', '-a', 'public-read', tarball, uri]) | 54 run([GSUTIL, 'cp', '-a', 'public-read', tarball, uri]) |
| 55 | 55 |
| 56 elif num_run == 2: | 56 elif num_run == 2: |
| 57 with bot.BuildStep('tests'): | 57 with bot.BuildStep('tests'): |
| 58 print "Please see the target device for results." | 58 print "Please see the target device for results." |
| 59 print "We no longer record/replay tests." | 59 print "We no longer record/replay tests." |
| 60 else: | 60 else: |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 total_shards = target_vm_pattern_match.group(4) | 113 total_shards = target_vm_pattern_match.group(4) |
| 114 target_builder(arch, mode, total_shards, shard_index) | 114 target_builder(arch, mode, total_shards, shard_index) |
| 115 else: | 115 else: |
| 116 raise Exception("Unknown builder name %s" % name) | 116 raise Exception("Unknown builder name %s" % name) |
| 117 | 117 |
| 118 if __name__ == '__main__': | 118 if __name__ == '__main__': |
| 119 try: | 119 try: |
| 120 sys.exit(main()) | 120 sys.exit(main()) |
| 121 except OSError as e: | 121 except OSError as e: |
| 122 sys.exit(e.errno) | 122 sys.exit(e.errno) |
| OLD | NEW |