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

Unified Diff: scripts/slave/recipes/chromium.py

Issue 2063323002: Create recipe to run find_annotated_tests.py periodically (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Pass branch info to Nightly scheduler Created 4 years, 5 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/chromium.py
diff --git a/scripts/slave/recipes/chromium.py b/scripts/slave/recipes/chromium.py
index f4c511a85e880a7161bb4173dc9cd524b15da9a2..9afde64f69931524c0818df88d2f2115c804b82c 100644
--- a/scripts/slave/recipes/chromium.py
+++ b/scripts/slave/recipes/chromium.py
@@ -13,6 +13,7 @@ DEPS = [
'commit_position',
'file',
'isolate',
+ 'gsutil',
'recipe_engine/json',
'recipe_engine/path',
'recipe_engine/platform',
@@ -20,6 +21,7 @@ DEPS = [
'recipe_engine/python',
'recipe_engine/raw_io',
'recipe_engine/step',
+ 'recipe_engine/tempfile',
'swarming',
'test_results',
'test_utils',
@@ -104,6 +106,8 @@ def GenTests(api):
}
if mastername == 'chromium.webkit':
properties['gs_acl'] = 'public-read'
+ if buildername == 'Android Find Annotated Test':
+ properties['current_time'] = '20160101T000000'
test = (
api.test('full_%s_%s' % (_sanitize_nonalpha(mastername),
_sanitize_nonalpha(buildername))) +

Powered by Google App Engine
This is Rietveld 408576698