edit Jenkinsfile and add datasetscript.sh

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

1
Jenkinsfile vendored
View File

@ -27,6 +27,7 @@ pipeline {
stage('Run sh file') {
steps {
checkout scm
sh 'ls -l'
sh 'chmod +x ./datasetscript.sh'
sh './datasetscript.sh'
}