script fix

This commit is contained in:
s434765 2021-03-27 20:52:07 +01:00
parent 51921783f2
commit 1aece3e728

11
Jenkinsfile vendored
View File

@ -1,8 +1,6 @@
pipeline {
agent any
stages {
node {
stage('Preparation') {
steps{
properties([
parameters([
string(defaultValue: 'karopa',
@ -16,10 +14,9 @@ pipeline {
])
]
)
}
}
stage('Clone repo') {
steps{
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]){
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
sh 'chmod 777 get_data_simple.sh'
@ -31,5 +28,3 @@ pipeline {
}
}
}
}
}