Skip to content

Commit

Permalink
ci: if ci-dev branch run min tests
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Bandeira <[email protected]>
  • Loading branch information
Vitor Bandeira committed Jul 6, 2024
1 parent 0dbce0c commit cb8d00b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jenkins/public_tests_all.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ node {
}

stage('Run Tests') {
runTests(DOCKER_IMAGE, 'pr');
if (env.CHANGE_BRANCH && env.CHANGE_BRANCH.contains('ci-dev')) {
runTests(DOCKER_IMAGE, 'dev');
} else {
runTests(DOCKER_IMAGE, 'pr');
}
}

stage ('Cleanup and Reporting') {
Expand Down

0 comments on commit cb8d00b

Please sign in to comment.