changed file name in Jenkinsfile

This commit is contained in:
Adrian Charkiewicz 2022-03-24 19:44:48 +01:00
parent 12b0121c4d
commit 7d9dff4fac

2
Jenkinsfile vendored
View File

@ -28,7 +28,7 @@ pipeline {
steps { steps {
echo 'Hello world' echo 'Hello world'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s444354/ium_444354']]]) checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s444354/ium_444354']]])
sh "chmod u+x ./dataset_download.sh" sh "chmod u+x ./download.sh"
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./download.sh" sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./download.sh"
archiveArtifacts 'data.txt' archiveArtifacts 'data.txt'
} }