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

Unified Diff: tools/bots/pkg.py

Issue 2801143003: Remove the "pkgbuild" step on the bots. (Closed)
Patch Set: Rebase. Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/pkgbuild.status ('k') | tools/gardening/lib/src/buildbot_data.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/pkg.py
diff --git a/tools/bots/pkg.py b/tools/bots/pkg.py
index 2ee259514e3d4e656030231be7c1e3029d3ee238..9f1905fabde2e2426b50903b040c5fe306990342 100644
--- a/tools/bots/pkg.py
+++ b/tools/bots/pkg.py
@@ -46,11 +46,6 @@ def PkgSteps(build_info):
# We have some unreproducible vm crashes on these bots
common_args.append('--copy-coredumps')
- # We are seeing issues with pub get calls on the windows bots.
- # Experiment with not running concurrent calls.
- if build_info.system == 'windows':
- common_args.append('-j1')
-
bot.RunTest('pkg', build_info,
common_args + ['pkg', 'docs'],
swallow_error=True)
@@ -62,11 +57,6 @@ def PkgSteps(build_info):
if os.path.isdir(path):
bot.RunTestRunner(build_info, path)
- pkgbuild_build_info = bot.BuildInfo('none', 'vm', build_info.mode,
- build_info.system, checked=False)
-
- public_args = (common_args + ['--append_logs', 'pkgbuild'])
- bot.RunTest('pkgbuild_public_pkgs', pkgbuild_build_info, public_args)
if __name__ == '__main__':
bot.RunBot(PkgConfig, PkgSteps)
« no previous file with comments | « pkg/pkgbuild.status ('k') | tools/gardening/lib/src/buildbot_data.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698