fix bracket 3

This commit is contained in:
Dawid 2021-06-12 18:25:43 +02:00
parent e8c3530e14
commit 7282b62d83

View File

@ -9,7 +9,8 @@ pipeline {
stages {
stage('checkout: Check out from version control'){
steps{
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '87e24204-a0e1-4840-b235-2b993c922d83', url: 'https://git.wmi.amu.edu.pl/s434804/ium_434804.git']]])
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg:
[], userRemoteConfigs: [[credentialsId: '87e24204-a0e1-4840-b235-2b993c922d83', url: 'https://git.wmi.amu.edu.pl/s434804/ium_434804.git']]])
}
}
stage('install dependencies') {
@ -32,13 +33,9 @@ pipeline {
}
post {
success {
stage('sendMail') {
steps{
emailext body: currentBuild.result ?: 'DVC SUCCESS',
subject: 's434804',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}
}
}