ium_434765/JenkinsfileNeural

50 lines
2.2 KiB
Plaintext
Raw Normal View History

2021-05-15 19:53:42 +02:00
node {
2021-05-17 21:52:12 +02:00
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') {
2021-05-22 17:57:16 +02:00
/* try {*/ docker.image("karopa/ium:31").inside {
2021-05-15 19:53:42 +02:00
stage('Test') {
2021-05-22 17:11:58 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/mlflow']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
2021-05-17 21:52:12 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-create-dataset', selector: buildParameter("BUILD_SELECTOR")
sh '''
#!/usr/bin/env bash
2021-05-17 21:57:30 +02:00
chmod 777 neural_network.sh
./neural_network.sh $EPOCHS | tee output.txt
2021-05-22 17:57:16 +02:00
mlflow run ium_434765 -e main
2021-05-17 21:52:12 +02:00
'''
archiveArtifacts 'output.txt'
archiveArtifacts 'model/**/*.*'
2021-05-17 21:43:05 +02:00
}
2021-05-22 11:45:29 +02:00
}
/*emailext body: 'Successful build',
2021-05-17 21:58:56 +02:00
subject: "s434765",
2021-05-17 21:52:12 +02:00
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
}
}
catch (e) {
emailext body: 'Failed build',
2021-05-17 21:58:56 +02:00
subject: "s434765",
2021-05-17 21:52:12 +02:00
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
throw e
2021-05-22 11:49:58 +02:00
}
2021-05-20 18:41:48 +02:00
}
2021-05-22 11:49:58 +02:00
stage ("build evaluation") {
build 's434765-evaluation/evaluation/'*/
2021-05-17 21:52:12 +02:00
}
2021-05-20 18:41:48 +02:00
}