OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 3 # Copyright (c) 2015, 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 import os.path | 7 import os.path |
8 import shutil | 8 import shutil |
9 import sys | 9 import sys |
10 import subprocess | 10 import subprocess |
(...skipping 22 matching lines...) Expand all Loading... | |
33 'third_party', 'pkg' , 'dartdoc' , 'bin' , | 33 'third_party', 'pkg' , 'dartdoc' , 'bin' , |
34 'dartdoc.dart') | 34 'dartdoc.dart') |
35 packages_dir = os.path.join(bot_utils.DART_DIR, | 35 packages_dir = os.path.join(bot_utils.DART_DIR, |
36 utils.GetBuildRoot(BUILD_OS, 'release', 'ia32'), | 36 utils.GetBuildRoot(BUILD_OS, 'release', 'ia32'), |
37 'packages') | 37 'packages') |
38 footer_file = os.path.join(bot_utils.DART_DIR, | 38 footer_file = os.path.join(bot_utils.DART_DIR, |
39 'tools', 'bots', 'dartdoc_footer.html') | 39 'tools', 'bots', 'dartdoc_footer.html') |
40 with bot.BuildStep('Build API docs by dartdoc'): | 40 with bot.BuildStep('Build API docs by dartdoc'): |
41 subprocess.call([dart_exe, '--package-root=' + packages_dir, dartdoc_dart, | 41 subprocess.call([dart_exe, '--package-root=' + packages_dir, dartdoc_dart, |
42 '--sdk-docs','--output', dirname, '--dart-sdk', dart_sdk, | 42 '--sdk-docs','--output', dirname, '--dart-sdk', dart_sdk, |
43 '--footer' , footer_file], | 43 '--footer' , footer_file, |
44 '--rel-canonical-prefix=https://api.dartlang.org/stable'], | |
Bill Hesse
2015/09/22 16:05:15
The other options are specified as two args, not a
keertip
2015/09/22 16:18:05
Done.
| |
44 stdout=open(os.devnull, 'wb')) | 45 stdout=open(os.devnull, 'wb')) |
45 | 46 |
46 def CreateUploadVersionFile(): | 47 def CreateUploadVersionFile(): |
47 file_path = os.path.join(bot_utils.DART_DIR, | 48 file_path = os.path.join(bot_utils.DART_DIR, |
48 utils.GetBuildRoot(BUILD_OS, 'release', 'ia32'), | 49 utils.GetBuildRoot(BUILD_OS, 'release', 'ia32'), |
49 'VERSION') | 50 'VERSION') |
50 with open(file_path, 'w') as fd: | 51 with open(file_path, 'w') as fd: |
51 fd.write(utils.GetVersionFileContent()) | 52 fd.write(utils.GetVersionFileContent()) |
52 DartArchiveUploadVersionFile(file_path) | 53 DartArchiveUploadVersionFile(file_path) |
53 | 54 |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
203 | 204 |
204 if __name__ == '__main__': | 205 if __name__ == '__main__': |
205 # We always clobber the bot, to make sure releases are build from scratch | 206 # We always clobber the bot, to make sure releases are build from scratch |
206 force = CHANNEL != bot_utils.Channel.BLEEDING_EDGE | 207 force = CHANNEL != bot_utils.Channel.BLEEDING_EDGE |
207 bot.Clobber(force=force) | 208 bot.Clobber(force=force) |
208 | 209 |
209 CreateUploadSDK() | 210 CreateUploadSDK() |
210 if BUILD_OS == 'linux': | 211 if BUILD_OS == 'linux': |
211 CreateUploadVersionFile() | 212 CreateUploadVersionFile() |
212 CreateUploadAPIDocs() | 213 CreateUploadAPIDocs() |
OLD | NEW |