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 }