summaryrefslogtreecommitdiff
path: root/ick2/workapi.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-11-29 18:45:21 +0100
committerLars Wirzenius <liw@liw.fi>2017-11-29 20:19:07 +0100
commitc47428b05ffdcd9adc621f47d38fa88ee7c260c7 (patch)
tree348020df3668d3a78538d6afb0b4e8015646e569 /ick2/workapi.py
parent22a1e56bd592bfb3a122c0c8bd45978791d4518b (diff)
downloadick2-c47428b05ffdcd9adc621f47d38fa88ee7c260c7.tar.gz
Add: set fresh_workspace in work responses
Diffstat (limited to 'ick2/workapi.py')
-rw-r--r--ick2/workapi.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ick2/workapi.py b/ick2/workapi.py
index f140108..f958132 100644
--- a/ick2/workapi.py
+++ b/ick2/workapi.py
@@ -62,6 +62,7 @@ class WorkAPI(ick2.APIbase):
'project': project['project'],
'pipeline': pipeline['name'],
'parameters': project.get('parameters', {}),
+ 'fresh_workspace': True,
'step': pipeline['actions'][index],
'step_index': index,
'log': '/logs/{}'.format(build_id),
@@ -154,7 +155,8 @@ class WorkAPI(ick2.APIbase):
self._finish_build(update)
else:
doing['step_index'] = index
- doing['step'] = actions[index]
+ doing['step'] = dict(actions[index])
+ doing['fresh_workspace'] = False
worker_state = {
'worker': update['worker'],