diff --git a/Jenkinsfile b/Jenkinsfile index d46e519..e39ef09 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,12 +29,16 @@ pipeline { } } stage("Check out from version control") { - checkout scm + steps { + checkout scm + } } stage("Shell Script") { + steps { sh "chmod u+x ./startscript.sh" sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript.sh" archiveArtifacts 'data.txt' + } } } } \ No newline at end of file