edit Jenkinsfile and add datasetscript.sh

This commit is contained in:
s487179 2023-04-13 22:26:46 +02:00
parent 2bcdd61283
commit e9761ef4db

2
Jenkinsfile vendored
View File

@ -26,6 +26,8 @@ pipeline {
}
stage('Run sh file') {
steps {
checkout scm
sh 'chmod +x ./datasetscript.sh'
sh './datasetscript.sh'
}
}