jenkinsfile run py script

This commit is contained in:
s444417 2022-04-03 12:51:17 +02:00
parent 0146b89897
commit c0c2301677

2
Jenkinsfile vendored
View File

@ -27,7 +27,7 @@ pipeline {
steps {
sh "chmod u+x ./startscript1.sh"
sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME} KAGGLE_KEY=${params.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh"
sh './src/task1python.py'
sh 'python ./src/task1python.py'
archiveArtifacts 'data.txt'
}
}