Add Dockerfile support for Jenkins

This commit is contained in:
Wojciech Jarmosz 2021-04-10 21:09:10 +02:00
parent 242815f99d
commit ac26c9c7ad

5
Jenkinsfile vendored
View File

@ -1,5 +1,7 @@
pipeline {
agent any
agent {
dockerfile true
}
parameters {
string(defaultValue: '5', description: 'Amount of lines to cut off the file.', name: 'CUTOFF', trim: false)
}
@ -8,6 +10,7 @@ stages {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}", "CUTOFF=${params.CUTOFF}" ]) {
sh 'python3 script.py'
// Uruchomienie skryptu
sh "chmod 777 ./data_download.sh"
sh "./data_download.sh"