ium_495719/Jenkinsfile
2024-03-26 23:07:11 +01:00

14 lines
274 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
checkout scm
sh './data_processing.sh'
archiveArtifacts artifacts: './*'
}
}
}
}