Skip to content

Commit

Permalink
Comment out dependencies on dragons_ci while gitlab is unavailable.
Browse files Browse the repository at this point in the history
  • Loading branch information
jehturner authored and Olesja Smirnova committed Nov 27, 2023
1 parent a49c452 commit da5dba1
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* - Warnings NG
*/

@Library('dragons_ci@master') _
// @Library('dragons_ci@master') _

// Change these to automatically skip steps
def runtests_gmosls = 1 // 1 to enable
Expand Down Expand Up @@ -46,7 +46,8 @@ pipeline {

stage ("Prepare"){
steps{
sendNotifications 'STARTED'
echo "Step would notify STARTED when dragons_ci is available"
// sendNotifications 'STARTED'
}
}

Expand Down Expand Up @@ -451,11 +452,13 @@ pipeline {
}
post {
success {
sendNotifications 'SUCCESSFUL'
echo "Step would notify SUCCESSFUL when dragons_ci is available"
// sendNotifications 'SUCCESSFUL'
// deleteDir() /* clean up our workspace */
}
failure {
sendNotifications 'FAILED'
echo "Step would notify FAILED when dragons_ci is available"
// sendNotifications 'FAILED'
// deleteDir() /* clean up our workspace */
}
always {
Expand Down

0 comments on commit da5dba1

Please sign in to comment.