ium_470607/Jenkinsfile

17 lines
447 B
Plaintext
Raw Normal View History

2021-03-27 16:54:42 +01:00
pipeline {
agent any
stages {
2021-03-28 13:29:04 +02:00
stage('sh: Shell Script') {
2021-03-27 16:54:42 +01:00
steps {
2021-03-28 13:29:04 +02:00
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
./script-zadanie-2-4.sh
}
archiveArtifacts 'train.csv'
archiveArtifacts 'test.csv'
archiveArtifacts 'valid.csv'
2021-03-27 16:54:42 +01:00
}
}
}
}