Dodanie 'Jenkinsfile_sacred'
This commit is contained in:
parent
9e4c5c9deb
commit
d5608f71bc
41
Jenkinsfile_sacred
Normal file
41
Jenkinsfile_sacred
Normal file
@ -0,0 +1,41 @@
|
||||
pipeline {
|
||||
agent {
|
||||
dockerfile {
|
||||
additionalBuildArgs "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=51854c15661583860a60db232a7026f0 --build-arg CUTOFF=${params.CUTOFF} -t kgirejko"
|
||||
}
|
||||
}
|
||||
parameters {
|
||||
string(
|
||||
defaultValue: 'kgirejko',
|
||||
description: 'Kaggle username',
|
||||
name: 'KAGGLE_USERNAME',
|
||||
trim: false
|
||||
)
|
||||
|
||||
password(
|
||||
defaultValue: '51854c15661583860a60db232a7026f0',
|
||||
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
||||
name: 'KAGGLE_KEY'
|
||||
)
|
||||
|
||||
string(
|
||||
defaultValue: '1000',
|
||||
description: 'Number of epochs',
|
||||
name: 'EPOCHS',
|
||||
trim: false
|
||||
)
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Main train'){
|
||||
steps {
|
||||
copyArtifacts filter: '*', projectName: 's478815-create-dataset'
|
||||
sh 'python3 ./DL.py $EPOCHS'
|
||||
archiveArtifacts artifacts: 'modelP.pkl', followSymlinks: false
|
||||
|
||||
build job: 's478815-evaluation/master/'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user