44 lines
1.6 KiB
Plaintext
44 lines
1.6 KiB
Plaintext
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'
|
|
sh 'python Biblioteka_DL/dllib-sacred.py with "epochs=$EPOCHS"'
|
|
sh 'ls -al my_runs/_sources'
|
|
sh 'cp my_runs/_sources/dllib-sacred_9b4efa30e286ba360857813ed7ad415c.py source_code.py'
|
|
sh 'cp my_runs/1/config.json configuration.json'
|
|
sh 'cp my_runs/1/info.json param.json'
|
|
sh 'cp my_runs/1/games_model.pkl model.pkl'
|
|
archiveArtifacts artifacts: 'games_model.pkl, source_code.py, configuration.json, param.json, model.pkl'
|
|
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'
|
|
}
|
|
}
|
|
} |