IUM_04 - update Jenkinsfile - fix

This commit is contained in:
Paweł Łączkowski 2024-04-03 21:02:18 +02:00
parent dc66d33ab9
commit 1ef2173f25
1 changed files with 13 additions and 12 deletions

25
Jenkinsfile vendored
View File

@ -1,5 +1,10 @@
pipeline {
agent any
agent {
dockerfile {
filename 'Dockerfile'
reuseNode true
}
}
parameters {
password (
@ -20,24 +25,20 @@ pipeline {
}
stages {
stage('Clone repository') {
stage('Checkout repository') {
steps {
checkout scm
}
}
stage('Build Docker image') {
steps {
docker.build("create-dataset-s464863")
}
}
stage('Download dataset and preprocess data') {
steps {
docker.image('create-dataset-s464863').withRun('"-e KAGGLE_USERNAME=${params.KAGGLE_USERNAME}"','"-e KAGGLE_KEY=${params.KAGGLE_KEY}"','"-e CUTOFF=${params.CUTOFF}"') {
sh "chmod +x ./download_dataset.py"
sh "python3 ./download_dataset.py ${params.CUTOFF}"
archiveArtifacts artifacts: 'datasets/*', onlyIfSuccessful: true
script {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
sh "chmod +x ./download_dataset.py"
sh "python3 ./download_dataset.py ${params.CUTOFF}"
archiveArtifacts artifacts: 'datasets/*', onlyIfSuccessful: true sh "python preprocess.py --cutoff ${params.CUTOFF}"
}
}
}
}