This commit is contained in:
s444501 2022-04-02 19:45:22 +02:00
parent 3ed81c9d75
commit e9f058e426

6
Jenkinsfile vendored
View File

@ -1,5 +1,5 @@
pipeline {
agent {dockerfile {additionalBuildArgs "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=${params.KAGGLE_KEY} -t zadanie"}}
agent any
parameters {
string(
@ -35,9 +35,7 @@ pipeline {
sh 'chmod u+x download.sh'
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}","KAGGLE_KEY=${params.KAGGLE_KEY}", "CUTOFF=${params.CUTOFF}"]) {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
// sh './download.sh'
sh 'ls'
sh 'python3 ./ium-data.py'
sh './download.sh'
}
archiveArtifacts artifacts: 'd_test.csv, d_dev.csv, d_train.csv'
}