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