Skip to content

Commit bcd74e0

Browse files
authored
add bblfshd mockups tests to regression suite (src-d#956)
add bblfshd mockups tests to regression suite
2 parents 000ef21 + 220b803 commit bcd74e0

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Jenkinsfile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pipeline {
77
nodeSelector 'srcd.host/type=jenkins-worker'
88
containerTemplate {
99
name 'regression-gitbase'
10-
image 'srcd/regression-gitbase:v0.3.1'
10+
image 'srcd/regression-gitbase:v0.3.3'
1111
ttyEnabled true
1212
command 'cat'
1313
}
@@ -23,12 +23,18 @@ pipeline {
2323
}
2424
triggers { pollSCM('0 0,12 * * *') }
2525
stages {
26-
stage('Run') {
26+
stage('Run performance tests') {
2727
when { branch 'master' }
2828
steps {
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+
}
3238
stage('PR-run') {
3339
when { changeRequest target: 'master' }
3440
steps {

0 commit comments

Comments
 (0)