ium_495719/Jenkinsfile
2024-03-26 23:19:18 +01:00

13 lines
279 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
git https://git.wmi.amu.edu.pl/s495719/ium_495719.git
sh './data_processing.sh'
archiveArtifacts artifacts: './*'
}
}
}
}