ium_478839/Jenkinsfile-sacred

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-05-08 19:36:46 +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 sebastianwalesa"
}
}
parameters {
string(
defaultValue: '1000',
description: 'Number of epochs',
name: 'EPOCHS',
trim: false
)
}
stages {
stage('Sacred-stage'){
steps {
copyArtifacts filter: '*', projectName: 's478839-create-dataset'
2022-05-08 19:42:55 +02:00
sh 'python3 ml_pytroch_sacred.py with "epochs=$EPOCHS"'
2022-05-08 19:36:46 +02:00
sh 'cp IUM_478839/_sources/* source_code.py'
sh 'cp IUM_478839/1/config.json configuration.json'
sh 'cp IUM_478839/1/info.json param.json'
sh 'cp IUM_478839/1/Model_xPosition.pkl model.pkl'
archiveArtifacts artifacts: 'source_code.py, configuration.json, param.json, model.pkl'
}
}
stage('Evaluation-job'){
steps {
build job: 's478839-evaluation/feature/'
}
}
}
}