Skip to content

Commit 19e4edf

Browse files
committed
jenkinsfile -> change pipeline sequence
currently issue #955 forces pipeline to fail and jenkins plot is not built this PR replaces stages so plot should be displayed before test has failed also related to src-d/regression-gitbase#25 Signed-off-by: lwsanty <[email protected]>
1 parent cc1b171 commit 19e4edf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Jenkinsfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@ pipeline {
2929
sh '/bin/regression --complexity=2 --csv --prom local:HEAD'
3030
}
3131
}
32-
stage('Run bblfsh mockup tests') {
33-
when { branch 'master' }
34-
steps {
35-
sh '/bin/regression-bblfsh-mockups local:HEAD'
36-
}
37-
}
3832
stage('PR-run') {
3933
when { changeRequest target: 'master' }
4034
steps {
@@ -66,5 +60,11 @@ pipeline {
6660
}
6761
}
6862
}
63+
stage('Run bblfsh mockup tests') {
64+
when { branch 'master' }
65+
steps {
66+
sh '/bin/regression-bblfsh-mockups local:HEAD'
67+
}
68+
}
6969
}
7070
}

0 commit comments

Comments
 (0)