ium_495719/Jenkinsfile
2024-03-27 01:35:29 +01:00

16 lines
361 B
Groovy

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