ium_464863/Jenkinsfile

47 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-03-20 14:23:42 +01:00
pipeline {
2024-04-03 21:02:18 +02:00
agent {
dockerfile {
filename 'Dockerfile'
reuseNode true
2024-04-03 21:33:25 +02:00
args "-e KAGGLE_USERNAME=${params.KAGGLE_USERNAME} -e KAGGLE_KEY=${params.KAGGLE_KEY}"
2024-04-03 21:02:18 +02:00
}
}
parameters {
password (
name: 'KAGGLE_USERNAME',
defaultValue: '',
description: 'Kaggle username'
2024-03-20 17:30:31 +01:00
)
password (
name: 'KAGGLE_KEY',
defaultValue: '',
description: 'Kaggle API key'
2024-03-20 17:30:31 +01:00
)
2024-03-20 17:33:00 +01:00
string (
name: 'CUTOFF',
defaultValue: '500',
description: 'Get only the first CUTOFF rows of the dataset'
)
}
2024-03-20 14:23:42 +01:00
stages {
2024-04-03 21:31:26 +02:00
stage('Clone repository') {
steps {
checkout scm
}
}
stage('Download dataset and preprocess data') {
2024-03-29 16:59:06 +01:00
steps {
2024-04-03 21:02:18 +02:00
script {
2024-04-03 21:31:26 +02:00
sh "echo ${params.KAGGLE_USERNAME}"
2024-04-03 21:33:25 +02:00
sh "echo ${KAGGLE_USERNAME}"
2024-04-03 21:31:26 +02:00
sh "chmod +x ./download_dataset.py"
sh "python3 ./download_dataset.py ${params.CUTOFF}"
archiveArtifacts artifacts: 'datasets/*', onlyIfSuccessful: true
}
2024-03-29 16:59:06 +01:00
}
}
2024-03-20 14:23:42 +01:00
}
}