From dd0bd6152bb952a93f705f08c66c65d6a9f2de4f Mon Sep 17 00:00:00 2001 From: Kamila Date: Tue, 19 Apr 2022 16:35:19 +0200 Subject: [PATCH] update Jenkinsfile --- Jenkinsfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 122f65c..b5f757d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } }