ium_434765/JenkinsfileNeural

45 lines
2.0 KiB
Plaintext
Raw Normal View History

2021-05-15 19:53:42 +02:00
node {
stage('Preparation') {
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',
trim: false),
2021-05-15 19:53:42 +02:00
])
]
)
}
stage('Clone repo') {
2021-05-17 21:27:04 +02:00
try { docker.image("karopa/ium:11").inside {
2021-05-15 19:53:42 +02:00
stage('Test') {
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
2021-05-17 21:36:02 +02:00
chmod 777 neural_network.sh ${params.KAGGLE_USERNAME}
2021-05-15 19:53:42 +02:00
./neural_network.sh | tee output.txt
'''
archiveArtifacts 'output.txt'
2021-05-17 21:10:47 +02:00
archiveArtifacts 'model/**/*.*'
2021-05-15 19:53:42 +02:00
}
2021-05-17 21:36:02 +02:00
emailext body: 's434765',
2021-05-17 21:27:04 +02:00
subject: "Successful build",
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
2021-05-17 21:28:57 +02:00
}
2021-05-17 21:27:04 +02:00
}
catch (e) {
2021-05-17 21:36:02 +02:00
emailext body: 's434765',
2021-05-17 21:27:04 +02:00
subject: "Failed build",
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
throw e
}
2021-05-15 19:53:42 +02:00
}
}