Fix Jenkins config

This commit is contained in:
Wojciech Jarmosz 2021-03-28 18:14:48 +02:00
parent 86648de687
commit 6601a50cdc

4
Jenkinsfile vendored
View File

@ -2,11 +2,9 @@ pipeline {
agent any
stages {
stage('Clone repo + run bash script') {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}", "CUTOFF=${params.CUTOFF}" ]) {
// Chekout na reporyztorium
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'f746c8e0-e974-4758-838d-1920a7b0e3dc', url: 'https://git.wmi.amu.edu.pl/s434704/ium_434704']]])
// Uruchomienie skryptu
sh "chmod 777 ./data_download.sh"
sh "./data_download.sh"