ium_434765/JenkinsfileNeural

47 lines
2.0 KiB
Plaintext
Raw Normal View History

2021-05-15 19:53:42 +02:00
node {
2021-05-17 21:47:31 +02:00
try {
stage('Preparation') {
2021-05-15 19:53:42 +02:00
properties([
parameters([
buildSelector(defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
2021-05-17 21:36:02 +02:00
name: 'BUILD_SELECTOR'),
string(defaultValue: '30',
description: 'Amount of epochs',
name: 'EPOCHS',
2021-05-17 21:47:31 +02:00
trim: false)
2021-05-15 19:53:42 +02:00
])
]
)
}
stage('Clone repo') {
stage('Test') {
2021-05-17 21:44:44 +02:00
docker.image("karopa/ium:11").inside {
2021-05-17 21:47:31 +02:00
2021-05-17 21:44:44 +02:00
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 '''
#!/usr/bin/env bash
chmod 777 neural_network.sh ${params.KAGGLE_USERNAME}
./neural_network.sh | tee output.txt
'''
archiveArtifacts 'output.txt'
archiveArtifacts 'model/**/*.*'
emailext body: 's434765',
subject: "Successful build",
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
2021-05-17 21:47:31 +02:00
2021-05-17 21:43:05 +02:00
}
}
2021-05-15 19:53:42 +02:00
}
2021-05-17 21:47:31 +02:00
}
catch (e) {
emailext body: 's434765',
subject: "Failed build",
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
throw e
}
2021-05-17 21:43:05 +02:00
}