ium_495719/Jenkinsfile
PawelDopierala acd9aa68d7 chmod
2024-03-27 01:36:46 +01:00

17 lines
411 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 'chmod 777 ./data_download.sh'
sh './data_processing.sh'
archiveArtifacts artifacts: './*'
}
}
}
}