Skip to content

Commit cb8d00b

Browse files
committed
ci: if ci-dev branch run min tests
Signed-off-by: Vitor Bandeira <[email protected]>
1 parent 0dbce0c commit cb8d00b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

jenkins/public_tests_all.Jenkinsfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ node {
1919
}
2020

2121
stage('Run Tests') {
22-
runTests(DOCKER_IMAGE, 'pr');
22+
if (env.CHANGE_BRANCH && env.CHANGE_BRANCH.contains('ci-dev')) {
23+
runTests(DOCKER_IMAGE, 'dev');
24+
} else {
25+
runTests(DOCKER_IMAGE, 'pr');
26+
}
2327
}
2428

2529
stage ('Cleanup and Reporting') {

0 commit comments

Comments
 (0)