epochs parameter
Some checks failed
s434765-training/pipeline/head There was a failure building this commit

This commit is contained in:
Karolina Oparczyk 2021-05-17 21:47:31 +02:00
parent 49a5c4884c
commit d325d66b80

View File

@ -1,5 +1,6 @@
node {
stage('Preparation') {
try {
stage('Preparation') {
properties([
parameters([
@ -9,7 +10,7 @@ node {
string(defaultValue: '30',
description: 'Amount of epochs',
name: 'EPOCHS',
trim: false),
trim: false)
])
]
)
@ -18,7 +19,7 @@ node {
stage('Clone repo') {
stage('Test') {
docker.image("karopa/ium:11").inside {
try {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-create-dataset', selector: buildParameter("BUILD_SELECTOR")
sh '''
@ -31,14 +32,15 @@ node {
emailext body: 's434765',
subject: "Successful build",
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
}
catch (e) {
emailext body: 's434765',
subject: "Failed build",
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
throw e
}
}
}
}
}
catch (e) {
emailext body: 's434765',
subject: "Failed build",
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
throw e
}
}