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

Unified Diff: scripts/slave/recipes/cros/cbuildbot_tryjob.py

Issue 2365023002: Enable --git-cache-dir option in chromite/cbuildbot. (Closed)
Patch Set: Better min branch. Created 4 years, 3 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
Index: scripts/slave/recipes/cros/cbuildbot_tryjob.py
diff --git a/scripts/slave/recipes/cros/cbuildbot_tryjob.py b/scripts/slave/recipes/cros/cbuildbot_tryjob.py
index 39f16a68435807e7d335b325b6f021123bc77bbd..1c6e58f14e3a419fd843e7ea0f1640115073a7ee 100644
--- a/scripts/slave/recipes/cros/cbuildbot_tryjob.py
+++ b/scripts/slave/recipes/cros/cbuildbot_tryjob.py
@@ -146,6 +146,38 @@ def GenTests(api):
+ api.chromite.seed_chromite_config(_CHROMITE_CONFIG)
)
+ yield (
+ api.test('release')
+ + api.properties(
+ mastername='chromiumos.tryserver',
+ buildername='paladin',
+ slavename='test',
+ repository='https://chromium.googlesource.com/chromiumos/tryjobs.git',
+ revision=api.gitiles.make_hash('test'),
+ cbb_config='x86-generic-full',
+ cbb_branch='release-R55-9999.B',
+ cbb_extra_args='["--timeout", "14400", "--remote-trybot",'
+ '"--remote-version=4"]',
+ )
+ + api.chromite.seed_chromite_config(_CHROMITE_CONFIG)
+ )
+
+ yield (
+ api.test('pre_git_cache_release')
+ + api.properties(
+ mastername='chromiumos.tryserver',
+ buildername='paladin',
+ slavename='test',
+ repository='https://chromium.googlesource.com/chromiumos/tryjobs.git',
+ revision=api.gitiles.make_hash('test'),
+ cbb_config='x86-generic-full',
+ cbb_branch='release-R54-8743.B',
+ cbb_extra_args='["--timeout", "14400", "--remote-trybot",'
+ '"--remote-version=4"]',
+ )
+ + api.chromite.seed_chromite_config(_CHROMITE_CONFIG)
+ )
+
# Test a CrOS tryjob with compressed "cbb_extra_args".
yield (
api.test('basic_compressed')

Powered by Google App Engine
This is Rietveld 408576698