diff --git a/Jenkinsfile b/Jenkinsfile index 25ca55c..f08e0b7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,6 +5,9 @@ pipeline { stage('Stage 1') { steps { echo 'Hello world!' + checkout scm + sh './data_processing.sh' + archiveArtifacts artifacts: './*' } } }