ium_495719/Jenkinsfile
PawelDopierala 392ef5c6c3 Split stage
2024-03-27 01:48:16 +01:00

25 lines
566 B
Groovy

pipeline {
agent any
stages {
stage('Git') {
steps {
git(
url: "https://git.wmi.amu.edu.pl/s495719/ium_495719.git",
branch: "main"
)
}
}
stage('Shell') {
steps {
sh 'chmod 777 ./data_processing.sh'
sh './data_processing.sh'
}
}
stage('Artifacts') {
steps {
archiveArtifacts artifacts: 'processed_data.txt'
}
}
}
}