2024-03-20 14:34:00 +01:00
|
|
|
pipeline {
|
2024-04-02 14:15:40 +02:00
|
|
|
agent any
|
2024-03-26 18:56:58 +01:00
|
|
|
parameters {
|
2024-04-02 14:13:40 +02:00
|
|
|
string(name: 'KAGGLE_USERNAME', defaultValue: 'alicjaszulecka', description: 'Kaggle username')
|
|
|
|
password(name: 'KAGGLE_KEY', defaultValue:'', description: 'Kaggle Key')
|
|
|
|
string(name: 'CUTOFF', defaultValue: '100', description: 'cut off number')
|
2024-03-26 18:56:58 +01:00
|
|
|
}
|
2024-03-20 14:34:00 +01:00
|
|
|
stages {
|
2024-03-26 18:56:58 +01:00
|
|
|
stage('Git Checkout') {
|
|
|
|
steps {
|
2024-04-02 14:13:40 +02:00
|
|
|
checkout scm
|
2024-03-26 18:56:58 +01:00
|
|
|
}
|
|
|
|
}
|
2024-04-02 14:13:40 +02:00
|
|
|
stage('Build') {
|
|
|
|
steps {
|
2024-04-02 14:25:32 +02:00
|
|
|
script {
|
2024-04-02 14:13:40 +02:00
|
|
|
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
|
|
|
|
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
|
2024-04-02 14:35:19 +02:00
|
|
|
def customImage = docker.build("custom-image", "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=${params.KAGGLE_KEY} .")
|
2024-04-02 14:27:03 +02:00
|
|
|
customImage.inside {
|
|
|
|
sh 'bash ./get_dataset.sh $CUTOFF'
|
|
|
|
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
|
2024-04-02 14:24:01 +02:00
|
|
|
}
|
2024-04-02 14:13:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-02 14:25:32 +02:00
|
|
|
}
|
2024-04-02 14:13:40 +02:00
|
|
|
}
|
|
|
|
}
|