ium_464913/Jenkinsfile

41 lines
777 B
Plaintext
Raw Normal View History

2024-04-01 16:14:55 +02:00
pipeline {
2024-04-01 16:41:47 +02:00
agent {
dockerfile {
filename 'Dockerfile'
args '-u root'
}
}
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-04-01 17:13:05 +02:00
environment {
KAGGLE_USERNAME = "${params.KAGGLE_USERNAME}"
KAGGLE_KEY = "${params.KAGGLE_KEY}"
}
2024-03-24 11:31:18 +01:00
stages {
2024-04-01 13:47:56 +02:00
stage('Run create-dataset script') {
2024-03-24 11:31:18 +01:00
steps {
2024-04-01 15:37:17 +02:00
sh 'chmod +x create-dataset.py'
2024-04-01 17:17:01 +02:00
sh 'python3 ./create-dataset.py'
2024-03-24 11:31:18 +01: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
}