update Jenkinsfile

This commit is contained in:
Kamila 2022-04-19 16:35:19 +02:00
parent 3e1e8658f7
commit dd0bd6152b

5
Jenkinsfile vendored
View File

@ -1,8 +1,6 @@
pipeline {
agent {
dockerfile {
additionalBuildArgs '-t ium'
}
dockerfile true
}
parameters {
string(
@ -31,6 +29,7 @@ pipeline {
"KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
sh 'python3 ./data_expl.py'
sh 'python3 ./nn_train.py'
archiveArtifacts artifacts: 'apps_train.csv, apps_test.csv, apps_validate.csv'
}
}