update jenkinsfile_train-sacred
This commit is contained in:
parent
3aef1af4e8
commit
0896e331a7
@ -1,38 +0,0 @@
|
|||||||
pipeline {
|
|
||||||
agent {
|
|
||||||
docker {
|
|
||||||
image 'maciejczajka'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
parameters {
|
|
||||||
string(
|
|
||||||
defaultValue: '100',
|
|
||||||
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 -e ${params.EPOCHS}'
|
|
||||||
archiveArtifacts artifacts: 'games_model.pkl'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
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'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,12 +1,12 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
agent {
|
||||||
dockerfile {
|
docker {
|
||||||
additionalBuildArgs "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=${params.KAGGLE_KEY} --build-arg CUTOFF=${params.CUTOFF} -t maciejczajka"
|
image 'maciejczajka'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
parameters {
|
parameters {
|
||||||
string(
|
string(
|
||||||
defaultValue: '1000',
|
defaultValue: '100',
|
||||||
description: 'Number of epochs',
|
description: 'Number of epochs',
|
||||||
name: 'EPOCHS',
|
name: 'EPOCHS',
|
||||||
trim: false
|
trim: false
|
||||||
@ -16,12 +16,8 @@ pipeline {
|
|||||||
stage('Script'){
|
stage('Script'){
|
||||||
steps {
|
steps {
|
||||||
copyArtifacts filter: '*', projectName: 's444356-create-dataset'
|
copyArtifacts filter: '*', projectName: 's444356-create-dataset'
|
||||||
sh 'python Biblioteka_DL/dllib-sacred.py with "epochs=$EPOCHS"'
|
sh 'python Biblioteka_DL/dllib-sacred.py -e ${params.EPOCHS}'
|
||||||
sh 'ls my_res'
|
archiveArtifacts artifacts: 'games_model.pkl'
|
||||||
sh 'cp -r my_res res'
|
|
||||||
archiveArtifacts artifacts: 'games_model.pkl, res/**/*.*'
|
|
||||||
sh 'rm -r my_res'
|
|
||||||
sh 'rm -r res'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user