Zaktualizuj 'Jenkinsfile'

This commit is contained in:
Szymon Parafiński 2022-03-27 23:14:20 +02:00
parent 74756b539f
commit e61ae12bdc

3
Jenkinsfile vendored
View File

@ -24,7 +24,7 @@ pipeline {
CUTOFF="$params.CUTOFF" CUTOFF="$params.CUTOFF"
} }
stages { stages {
stage('Checkout'){ stage('Check out from version control'){
steps { steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444018', url: 'https://git.wmi.amu.edu.pl/s444018/ium_444018.git']]]) 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 'kaggle datasets list'
} }
} }
sh 'echo Downloading dataset'
sh './download.sh' sh './download.sh'
archiveArtifacts artifacts: 'imdb_top_1000_dev.csv, imdb_top_1000_test.csv, imdb_top_1000_train.csv', followSymlinks: false archiveArtifacts artifacts: 'imdb_top_1000_dev.csv, imdb_top_1000_test.csv, imdb_top_1000_train.csv', followSymlinks: false
} }