AdamOsiowy123
17a1d512cd
All checks were successful
s444452-training/pipeline/head This commit looks good
27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
node {
|
|
checkout scm
|
|
docker.image('s444452/ium:1.3').inside {
|
|
stage('Preparation') {
|
|
properties([
|
|
pipelineTriggers([upstream(threshold: hudson.model.Result.SUCCESS, upstreamProjects: "s444452-create-dataset")]),
|
|
parameters([
|
|
string(
|
|
defaultValue: ".",
|
|
description: 'Arguments for model training: arg1,arg2,arg3',
|
|
name: 'TRAIN_ARGS'
|
|
)
|
|
])
|
|
])
|
|
}
|
|
stage('Copy artifacts') {
|
|
copyArtifacts filter: 'train_data.csv', fingerprintArtifacts: true, projectName: 's444452-create-dataset'
|
|
copyArtifacts filter: 'test_data.csv', fingerprintArtifacts: true, projectName: 's444452-create-dataset'
|
|
copyArtifacts filter: 'dev_data.csv', fingerprintArtifacts: true, projectName: 's444452-create-dataset'
|
|
}
|
|
stage('Run script') {
|
|
withEnv(["TRAIN_ARGS=${params.TRAIN_ARGS}"]) {
|
|
sh "python3 Scripts/train_neural_network.py $TRAIN_ARGS"
|
|
}
|
|
}
|
|
}
|
|
} |