Maciej Czajka
24b2211741
All checks were successful
s444356-training/pipeline/head This commit looks good
25 lines
662 B
Plaintext
25 lines
662 B
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 'python3 ./Biblioteka_DL/dllib.py $EPOCHS'
|
|
archiveArtifacts artifacts: 'games_model.pkl', followSymlinks: false
|
|
|
|
}
|
|
}
|
|
}
|
|
} |