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

Unified Diff: dart/tools/bots/pub.py

Issue 11316082: Build package root directory on Pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/bots/pub.py
diff --git a/dart/tools/bots/pub.py b/dart/tools/bots/pub.py
index e101783eb0f0752ddfbcf8e311da27327c926712..29e49aee50c377460a0b19b873a5b32ae7e925fd 100755
--- a/dart/tools/bots/pub.py
+++ b/dart/tools/bots/pub.py
@@ -41,6 +41,12 @@ def PubSteps(build_info):
print 'Generating API Docs: %s' % (' '.join(args))
bot.RunProcess(args)
+ with bot.BuildStep('Build package-root'):
+ args = [sys.executable, './tools/build.py', '--mode=' + build_info.mode,
+ 'packages']
+ print 'Building package-root: %s' % (' '.join(args))
+ bot.RunProcess(args)
+
bot.RunTest('pub', build_info, ['pub', 'pkg'])
« 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