Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Setup minikube
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigonull committed Jan 9, 2024
1 parent 4a93a70 commit 7efe8ad
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .ci/jenkins/Jenkinsfile.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -107,17 +107,30 @@ pipeline {
}
}


stage('Setup Minikube') {
steps {
script {
setupMinikube()
}
}
post {
unsuccessful {
script {
util.archiveConsoleLog()
}
}
}
}

stage('Test Kogito Operator & CLI') {
when {
expression {
return helper.shouldLaunchTests()
}
}
steps {
script {
setupMinikube()
sh 'make test'
}
sh 'make test'
}
post {
unsuccessful {
Expand Down

0 comments on commit 7efe8ad

Please sign in to comment.