Skip to content

Commit

Permalink
Update pipeline to install operator from a specific branch
Browse files Browse the repository at this point in the history
Signed-off-by: M Sajid Mansoori <mmansoor@redhat.com>
  • Loading branch information
msajidmansoori12 committed Jul 5, 2024
1 parent 3fa2b5a commit e86a3ac
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions TIER3_NIGHTLY.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pipeline{
script{
checkout scm
tackle.setGoTestsEnvVars() //Sets env sensitive env vars
tackle.deployKonveyorOnMinikube()
tackle.deployKonveyorOnMinikube(params.TEST_BRANCH)
echo "Applying tackle CR"
tackle.applyTackleCR()
}
Expand Down Expand Up @@ -51,13 +51,15 @@ pipeline{
}
success{
script{
tackle.writeBuildStatus(passed=true,pipeline="tier3-nightly")
// tackle.writeBuildStatus(passed=true,pipeline="tier3-nightly")
echo "test"
}
}
failure{
script{
tackle.writeBuildStatus(passed=false,pipeline="tier3-nightly")
tackle.sendTier3NightlyFailureNotification()
// tackle.writeBuildStatus(passed=false,pipeline="tier3-nightly")
// tackle.sendTier3NightlyFailureNotification()
echo "test"
}
}
}
Expand Down

0 comments on commit e86a3ac

Please sign in to comment.