This commit is contained in:
AWieczarek 2024-04-09 18:03:50 +02:00
parent 2e67997931
commit 50c62c859c
1 changed files with 3 additions and 6 deletions

9
Jenkinsfile vendored
View File

@ -1,5 +1,5 @@
pipeline { pipeline {
agent any agent { dockerfile true }
parameters { parameters {
string(name: 'CUTOFF', defaultValue: '10000', description: 'Liczba wierszy do obcięcia ze zbioru danych') string(name: 'CUTOFF', defaultValue: '10000', description: 'Liczba wierszy do obcięcia ze zbioru danych')
@ -15,16 +15,13 @@ pipeline {
} }
stage('Download, Process, and Split Dataset') { stage('Download, Process, and Split Dataset') {
agent {
dockerfile true
}
steps { steps {
withEnv([ withEnv([
"KAGGLE_USERNAME=${env.KAGGLE_USERNAME}", "KAGGLE_USERNAME=${env.KAGGLE_USERNAME}",
"KAGGLE_KEY=${env.KAGGLE_KEY}" "KAGGLE_KEY=${env.KAGGLE_KEY}"
]) { ]) {
sh "echo === VARIABLE SUBSTITUTION ===" sh 'export KAGGLE_USERNAME=${env.KAGGLE_USERNAME}"'
sh "echo ${params.KAGGLE_USERNAME}" sh 'export KAGGLE_KEY=${env.KAGGLE_KEY}"'
sh "python3 IUM_02.py" sh "python3 IUM_02.py"
} }
} }