epochs parameter
Some checks failed
s434765-training/pipeline/head There was a failure building this commit
Some checks failed
s434765-training/pipeline/head There was a failure building this commit
This commit is contained in:
parent
d325d66b80
commit
18c05640d1
@ -1,5 +1,4 @@
|
|||||||
node {
|
node {
|
||||||
try {
|
|
||||||
stage('Preparation') {
|
stage('Preparation') {
|
||||||
|
|
||||||
properties([
|
properties([
|
||||||
@ -17,30 +16,29 @@ node {
|
|||||||
|
|
||||||
}
|
}
|
||||||
stage('Clone repo') {
|
stage('Clone repo') {
|
||||||
|
try { docker.image("karopa/ium:11").inside {
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
docker.image("karopa/ium:11").inside {
|
|
||||||
|
|
||||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
|
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")
|
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-create-dataset', selector: buildParameter("BUILD_SELECTOR")
|
||||||
sh '''
|
sh '''
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
chmod 777 neural_network.sh ${params.KAGGLE_USERNAME}
|
chmod 777 neural_network.sh ${params.EPOCHS}
|
||||||
./neural_network.sh | tee output.txt
|
./neural_network.sh | tee output.txt
|
||||||
'''
|
'''
|
||||||
archiveArtifacts 'output.txt'
|
archiveArtifacts 'output.txt'
|
||||||
archiveArtifacts 'model/**/*.*'
|
archiveArtifacts 'model/**/*.*'
|
||||||
emailext body: 's434765',
|
}
|
||||||
|
emailext body: 'Successful build',
|
||||||
subject: "Successful build",
|
subject: "Successful build",
|
||||||
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
|
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
|
||||||
|
}
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
emailext body: 's434765',
|
emailext body: 'Failed build',
|
||||||
subject: "Failed build",
|
subject: "Failed build",
|
||||||
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
|
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
|
||||||
throw e
|
throw e
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user