Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(651)

Side by Side Diff: tools/bots/cross-vm.py

Issue 1136543007: Only build runtime target on the cross compiler (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 24 matching lines...) Expand all
35 build_py = os.path.join('tools', 'build.py') 35 build_py = os.path.join('tools', 'build.py')
36 revision = os.environ['BUILDBOT_GOT_REVISION'] 36 revision = os.environ['BUILDBOT_GOT_REVISION']
37 tarball = tarball_name(arch, mode, revision) 37 tarball = tarball_name(arch, mode, revision)
38 temporary_files = [tarball] 38 temporary_files = [tarball]
39 bot.Clobber() 39 bot.Clobber()
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]) 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])
55 run([GSUTIL, 'setacl', 'public-read', uri]) 55 run([GSUTIL, 'setacl', 'public-read', uri])
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 mode = target_vm_pattern_match.group(2) 109 mode = target_vm_pattern_match.group(2)
110 target_builder(arch, mode) 110 target_builder(arch, mode)
111 else: 111 else:
112 raise Exception("Unknown builder name %s" % name) 112 raise Exception("Unknown builder name %s" % name)
113 113
114 if __name__ == '__main__': 114 if __name__ == '__main__':
115 try: 115 try:
116 sys.exit(main()) 116 sys.exit(main())
117 except OSError as e: 117 except OSError as e:
118 sys.exit(e.errno) 118 sys.exit(e.errno)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698