add ckeckout, sh and archiveArtifacts

This commit is contained in:
PawelDopierala 2024-03-26 23:07:11 +01:00
parent 961da7f87f
commit c8c4778732
1 changed files with 3 additions and 0 deletions

3
Jenkinsfile vendored
View File

@ -5,6 +5,9 @@ pipeline {
stage('Stage 1') {
steps {
echo 'Hello world!'
checkout scm
sh './data_processing.sh'
archiveArtifacts artifacts: './*'
}
}
}