ium_495719/Jenkinsfile
PawelDopierala c06a7c962c artifacts
2024-03-20 15:12:02 +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: './*'
}
}
}
}