ium_495719/Jenkinsfile
PawelDopierala 6c353f2051 change git
2024-03-27 00:57:08 +01:00

13 lines
286 B
Groovy

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