diff options
Diffstat (limited to 'Jenkinsfile')
| -rw-r--r-- | Jenkinsfile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 6e328cd..98b3cf9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,3 +1,5 @@ +@Library('jenkins-wi-shared-library') _ + pipeline { agent { label 'guixsd' @@ -6,6 +8,7 @@ pipeline { stage('fetch') { steps { dir('/home/oleg/src/guix') { + sendNotifications 'STARTED' sh 'git fetch origin' } } @@ -46,4 +49,9 @@ pipeline { } } } + post { + always { + sendNotifications currentBuild.result + } + } } |
