Fix Jenkins config

This commit is contained in:
Wojciech Jarmosz 2021-03-28 18:21:17 +02:00
parent fcd2ba3164
commit d56a5032c1

3
Jenkinsfile vendored
View File

@ -2,7 +2,7 @@ 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}" ]) {
// Uruchomienie skryptu
@ -14,5 +14,6 @@ stages {
archiveArtifacts "MoviesOnStreamingPlatforms_updated.train"
}
}
}
}
}