ium_444356/Jenkinsfile_train

40 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-05-02 14:52:26 +02:00
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-02 15:15:27 +02:00
sh 'python3 ./Biblioteka_DL/dllib.py $EPOCHS'
2022-05-02 15:18:46 +02:00
archiveArtifacts artifacts: 'games_model.pkl', followSymlinks: false
2022-05-04 21:41:29 +02:00
2022-05-02 14:52:26 +02:00
}
}
2022-05-02 15:47:49 +02:00
}
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'
}
}
2022-05-02 14:52:26 +02:00
}