From e61ae12bdc3a54ee4c2f0f235065d6e1d97fc7b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Parafi=C5=84ski?= Date: Sun, 27 Mar 2022 23:14:20 +0200 Subject: [PATCH] Zaktualizuj 'Jenkinsfile' --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6015e5e..9d7ae2e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,7 +24,7 @@ pipeline { CUTOFF="$params.CUTOFF" } stages { - stage('Checkout'){ + stage('Check out from version control'){ steps { checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444018', url: 'https://git.wmi.amu.edu.pl/s444018/ium_444018.git']]]) } @@ -39,6 +39,7 @@ pipeline { sh 'kaggle datasets list' } } + sh 'echo Downloading dataset' sh './download.sh' archiveArtifacts artifacts: 'imdb_top_1000_dev.csv, imdb_top_1000_test.csv, imdb_top_1000_train.csv', followSymlinks: false }