aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes
diff options
context:
space:
mode:
authorGravatar borenet <borenet@chromium.org>2016-10-24 06:36:30 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-10-24 06:36:30 -0700
commit09732a6b0e7c4b087279095762f9d27a4f556aba (patch)
tree1c741c75b5a231ad92ef74c887fdbe818b2a2d0b /infra/bots/recipes
parent1326068147ee60de138061a3fc1157fcfd5d017b (diff)
Add infra recipe module, use for updating Go DEPS
Diffstat (limited to 'infra/bots/recipes')
-rw-r--r--infra/bots/recipes/swarm_RecreateSKPs.expected/Housekeeper-Weekly-RecreateSKPs.json13
-rw-r--r--infra/bots/recipes/swarm_RecreateSKPs.py3
-rw-r--r--infra/bots/recipes/swarm_infra.py26
3 files changed, 20 insertions, 22 deletions
diff --git a/infra/bots/recipes/swarm_RecreateSKPs.expected/Housekeeper-Weekly-RecreateSKPs.json b/infra/bots/recipes/swarm_RecreateSKPs.expected/Housekeeper-Weekly-RecreateSKPs.json
index 05e83a393c..15feac8777 100644
--- a/infra/bots/recipes/swarm_RecreateSKPs.expected/Housekeeper-Weekly-RecreateSKPs.json
+++ b/infra/bots/recipes/swarm_RecreateSKPs.expected/Housekeeper-Weekly-RecreateSKPs.json
@@ -245,6 +245,18 @@
},
{
"cmd": [
+ "go",
+ "get",
+ "-u",
+ "go.skia.org/infra/..."
+ ],
+ "env": {
+ "GOPATH": "[CUSTOM_/_B_WORK]/gopath"
+ },
+ "name": "update go pkgs"
+ },
+ {
+ "cmd": [
"python",
"-u",
"\nimport os\nimport urllib2\n\nTOKEN_FILE = '.depot_tools_oauth2_tokens'\nTOKEN_FILE_BACKUP = '.depot_tools_oauth2_tokens.old'\nTOKEN_URL = 'http://metadata/computeMetadata/v1/project/attributes/depot_tools_auth_update_skps'\n\nreq = urllib2.Request(TOKEN_URL, headers={'Metadata-Flavor': 'Google'})\ncontents = urllib2.urlopen(req).read()\n\nhome = os.path.expanduser('~')\ntoken_file = os.path.join(home, TOKEN_FILE)\nif os.path.isfile(token_file):\n os.rename(token_file, os.path.join(home, TOKEN_FILE_BACKUP))\n\nwith open(token_file, 'w') as f:\n f.write(contents)\n"
@@ -282,6 +294,7 @@
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"CHROME_HEADLESS": "1",
+ "GOPATH": "[CUSTOM_/_B_WORK]/gopath",
"PATH": "[DEPOT_TOOLS]:%(PATH)s"
},
"name": "Upload SKPs"
diff --git a/infra/bots/recipes/swarm_RecreateSKPs.py b/infra/bots/recipes/swarm_RecreateSKPs.py
index eb92484068..d13e7507cc 100644
--- a/infra/bots/recipes/swarm_RecreateSKPs.py
+++ b/infra/bots/recipes/swarm_RecreateSKPs.py
@@ -10,6 +10,7 @@ DEPS = [
'build/file',
'core',
'depot_tools/gclient',
+ 'infra',
'recipe_engine/path',
'recipe_engine/properties',
'recipe_engine/python',
@@ -136,9 +137,11 @@ def RunSteps(api):
# Upload the SKPs.
if 'Canary' not in api.properties['buildername']:
+ api.infra.update_go_deps()
cmd = ['python',
api.vars.skia_dir.join('infra', 'bots', 'upload_skps.py'),
'--target_dir', output_dir]
+ env.update(api.infra.go_env)
with depot_tools_auth(api, UPDATE_SKPS_KEY):
api.step('Upload SKPs',
cmd=cmd,
diff --git a/infra/bots/recipes/swarm_infra.py b/infra/bots/recipes/swarm_infra.py
index bfc004b138..a790fd5f59 100644
--- a/infra/bots/recipes/swarm_infra.py
+++ b/infra/bots/recipes/swarm_infra.py
@@ -8,37 +8,19 @@
DEPS = [
'core',
+ 'infra',
'recipe_engine/path',
'recipe_engine/properties',
'recipe_engine/step',
+ 'run',
'vars',
]
-UPDATE_GO_ATTEMPTS = 5
-
-
def RunSteps(api):
api.vars.setup()
api.core.checkout_steps()
-
- # Attempt to update go dependencies. This fails flakily sometimes, so perform
- # multiple attempts.
- gopath = api.vars.checkout_root.join('gopath')
- env = {'GOPATH': gopath}
- name = 'update go pkgs'
- for attempt in xrange(UPDATE_GO_ATTEMPTS):
- step_name = name
- if attempt > 0:
- step_name += ' (attempt %d)' % (attempt + 1)
- try:
- api.step(step_name,
- cmd=['go', 'get', '-u', 'go.skia.org/infra/...'],
- env=env)
- break
- except api.step.StepFailure:
- if attempt == UPDATE_GO_ATTEMPTS - 1:
- raise
+ api.infra.update_go_deps()
# Run the infra tests.
infra_tests = api.vars.skia_dir.join(
@@ -46,7 +28,7 @@ def RunSteps(api):
api.step('infra_tests',
cmd=['python', infra_tests],
cwd=api.vars.skia_dir,
- env=env)
+ env=api.infra.go_env)
def GenTests(api):