From da5dba1e4faec948031fdf27e909cd8ca1a37777 Mon Sep 17 00:00:00 2001 From: "James E.H. Turner" Date: Mon, 20 Nov 2023 21:44:01 -0300 Subject: [PATCH] Comment out dependencies on dragons_ci while gitlab is unavailable. --- Jenkinsfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d7f3a9e36..3e738216c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 @@ -46,7 +46,8 @@ pipeline { stage ("Prepare"){ steps{ - sendNotifications 'STARTED' + echo "Step would notify STARTED when dragons_ci is available" + // sendNotifications 'STARTED' } } @@ -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 {