| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # | 2 # |
| 3 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4 # for details. All rights reserved. Use of this source code is governed by a | 4 # for details. All rights reserved. Use of this source code is governed by a |
| 5 # BSD-style license that can be found in the LICENSE file. | 5 # BSD-style license that can be found in the LICENSE file. |
| 6 | 6 |
| 7 # Dart Editor promote tools. | 7 # Dart Editor promote tools. |
| 8 | 8 |
| 9 import imp | 9 import imp |
| 10 import optparse | 10 import optparse |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 from_loc = raw_namer.sdk_directory(revision) | 129 from_loc = raw_namer.sdk_directory(revision) |
| 130 to_loc = release_namer.sdk_directory(to_revision) | 130 to_loc = release_namer.sdk_directory(to_revision) |
| 131 remove_gs_directory(to_loc) | 131 remove_gs_directory(to_loc) |
| 132 Gsutil(['-m', 'cp', '-a', 'public-read', '-R', from_loc, to_loc]) | 132 Gsutil(['-m', 'cp', '-a', 'public-read', '-R', from_loc, to_loc]) |
| 133 | 133 |
| 134 # Copy api-docs zipfile. | 134 # Copy api-docs zipfile. |
| 135 from_loc = raw_namer.apidocs_zipfilepath(revision) | 135 from_loc = raw_namer.apidocs_zipfilepath(revision) |
| 136 to_loc = release_namer.apidocs_zipfilepath(to_revision) | 136 to_loc = release_namer.apidocs_zipfilepath(to_revision) |
| 137 Gsutil(['-m', 'cp', '-a', 'public-read', from_loc, to_loc]) | 137 Gsutil(['-m', 'cp', '-a', 'public-read', from_loc, to_loc]) |
| 138 | 138 |
| 139 # Copy dartium directory. | |
| 140 from_loc = raw_namer.dartium_directory(revision) | |
| 141 to_loc = release_namer.dartium_directory(to_revision) | |
| 142 remove_gs_directory(to_loc) | |
| 143 Gsutil(['-m', 'cp', '-a', 'public-read', '-R', from_loc, to_loc]) | |
| 144 | |
| 145 # Copy wheezy linux deb and src packages. | 139 # Copy wheezy linux deb and src packages. |
| 146 from_loc = raw_namer.linux_packages_directory(revision) | 140 from_loc = raw_namer.linux_packages_directory(revision) |
| 147 to_loc = release_namer.linux_packages_directory(to_revision) | 141 to_loc = release_namer.linux_packages_directory(to_revision) |
| 148 remove_gs_directory(to_loc) | 142 remove_gs_directory(to_loc) |
| 149 Gsutil(['-m', 'cp', '-a', 'public-read', '-R', from_loc, to_loc]) | 143 Gsutil(['-m', 'cp', '-a', 'public-read', '-R', from_loc, to_loc]) |
| 150 | 144 |
| 151 # Copy VERSION file. | 145 # Copy VERSION file. |
| 152 from_loc = raw_namer.version_filepath(revision) | 146 from_loc = raw_namer.version_filepath(revision) |
| 153 to_loc = release_namer.version_filepath(to_revision) | 147 to_loc = release_namer.version_filepath(to_revision) |
| 154 Gsutil(['cp', '-a', 'public-read', from_loc, to_loc]) | 148 Gsutil(['cp', '-a', 'public-read', from_loc, to_loc]) |
| 155 | 149 |
| 156 promote(revision) | 150 promote(revision) |
| 157 promote('latest') | 151 promote('latest') |
| 158 | 152 |
| 159 def Gsutil(cmd, throw_on_error=True): | 153 def Gsutil(cmd, throw_on_error=True): |
| 160 gsutilTool = join(DART_PATH, 'third_party', 'gsutil', 'gsutil') | 154 gsutilTool = join(DART_PATH, 'third_party', 'gsutil', 'gsutil') |
| 161 command = [sys.executable, gsutilTool] + cmd | 155 command = [sys.executable, gsutilTool] + cmd |
| 162 if DRY_RUN: | 156 if DRY_RUN: |
| 163 print "DRY runnning: %s" % command | 157 print "DRY runnning: %s" % command |
| 164 return | 158 return |
| 165 return bot_utils.run(command, throw_on_error=throw_on_error) | 159 return bot_utils.run(command, throw_on_error=throw_on_error) |
| 166 | 160 |
| 167 | 161 |
| 168 if __name__ == '__main__': | 162 if __name__ == '__main__': |
| 169 sys.exit(main()) | 163 sys.exit(main()) |
| OLD | NEW |