ium_444356/Jenkinsfile_train-sacred

47 lines
1.5 KiB
Plaintext
Raw Normal View History

pipeline {
agent {
dockerfile {
additionalBuildArgs "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=${params.KAGGLE_KEY} --build-arg CUTOFF=${params.CUTOFF} -t maciejczajka"
}
}
parameters {
string(
defaultValue: '1000',
description: 'Number of epochs',
name: 'EPOCHS',
trim: false
)
}
stages {
stage('Script'){
steps {
copyArtifacts filter: '*', projectName: 's444356-create-dataset'
2022-05-04 21:10:22 +02:00
sh 'rm -r my_runs'
2022-05-04 21:16:31 +02:00
sh 'python Biblioteka_DL/dllib-sacred.py with "epochs=$EPOCHS"'
sh 'ls -al my_runs'
sh 'ls -al my_runs/1'
sh 'ls -al my_runs/_sources'
2022-05-04 21:01:31 +02:00
}
}
stage('Artifacts'){
steps {
archiveArtifacts artifacts: 'my_runs/1/info.json, my_runs/1/config.json, my_runs/1/games_model.pkl, my_runs/_sources/dllib-sacred_9b4efa30e286ba360857813ed7ad415c.py', followSymlinks: false
build job: 's444356-evaluation/master/'
}
}
}
post {
success {
emailext body: 'SUCCESS', subject: 's444356-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
emailext body: 'FAILURE', subject: 's444356-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
unstable {
emailext body: 'UNSTABLE', subject: 's444356-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
changed {
emailext body: 'CHANGED', subject: 's444356-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}