Update Jenkinsfile

This commit is contained in:
s464962 2024-03-26 23:53:34 +01:00
parent 6c1d2cd051
commit 94d9a2721b
1 changed files with 8 additions and 2 deletions

10
Jenkinsfile vendored
View File

@ -22,7 +22,13 @@ pipeline {
checkout([$class: 'GitSCM', branches: [[name: '*/main']], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s464962/ium_464962']]])
}
}
stage('Set execute permission') {
steps {
script {
sh 'chmod +x create-dataset.sh'
}
}
}
stage('Download') {
steps {
withEnv([
@ -39,4 +45,4 @@ pipeline {
}
}
}
}
}0