From 7282b62d83800068dc32e16a2b12898a1a608493 Mon Sep 17 00:00:00 2001 From: Dawid Date: Sat, 12 Jun 2021 18:25:43 +0200 Subject: [PATCH] fix bracket 3 --- Jenkinsfile_dvc | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile_dvc b/Jenkinsfile_dvc index 3431453..d3147a1 100644 --- a/Jenkinsfile_dvc +++ b/Jenkinsfile_dvc @@ -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' - } - } + emailext body: currentBuild.result ?: 'DVC SUCCESS', + subject: 's434804', + to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms' } } } \ No newline at end of file