ium_464913/Jenkinsfile

34 lines
724 B
Plaintext
Raw Normal View History

2024-04-01 16:14:55 +02:00
pipeline {
2024-04-01 17:46:47 +02:00
agent any
2024-03-24 11:31:18 +01:00
parameters {
string (
defaultValue: 'vskyper',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
)
password (
defaultValue: '',
2024-04-01 17:02:18 +02:00
description: 'Kaggle API key',
2024-03-24 11:31:18 +01:00
name: 'KAGGLE_KEY',
)
}
2024-03-24 12:13:05 +01:00
2024-03-24 11:31:18 +01:00
stages {
2024-04-01 17:46:47 +02:00
stage('Run create-dataset script') {
steps {
2024-04-01 17:56:06 +02:00
withEnv (["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
sh 'chmod +x create-dataset.py'
sh 'python3 ./create-dataset.py $KAGGLE_USERNAME'
}
2024-04-01 17:46:47 +02:00
}
}
2024-04-01 17:56:06 +02:00
2024-03-24 12:13:05 +01:00
stage('Archive Artifacts') {
2024-03-24 11:31:18 +01:00
steps {
2024-04-01 17:09:39 +02:00
archiveArtifacts artifacts: 'data/*', onlyIfSuccessful: true
2024-03-24 11:31:18 +01:00
}
2024-03-20 14:24:07 +01:00
}
2024-03-24 11:31:18 +01:00
}
2024-03-20 14:21:31 +01:00
}