Skip to content

Commit ade5b41

Browse files
author
Wolfgang Mauerer
committed
Fix pipeline dependency handing
Stage 3 depends on stage 2, so add a corresponding dependency in the scheduler. Signed-off-by: Wolfgang Mauerer <wolfgang.mauerer@oth-regensburg.de>
1 parent 43a8ac9 commit ade5b41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codeface/project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def conway_analyse(resdir, gitdir, titandir, codeface_conf, project_conf,
362362
execute_command,
363363
(cmd,),
364364
{"direct_io":True, "cwd":cwd},
365-
deps=[],
365+
deps=[s2],
366366
startmsg=prefix + "Inferring architectural metrics with understand...",
367367
endmsg=prefix + "understand run done."
368368
)
@@ -383,7 +383,7 @@ def conway_analyse(resdir, gitdir, titandir, codeface_conf, project_conf,
383383
if "dependencyType" in conf.keys() and conf["dependencyType"] == "dsm":
384384
deps=[s3]
385385
else:
386-
deps=[]
386+
deps=[s2]
387387

388388
s4 = pool.add(
389389
execute_command,

0 commit comments

Comments
 (0)