ium_464953/Jenkinsfile

40 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-03-23 20:11:47 +01:00
pipeline {
agent any
2024-03-23 20:22:37 +01:00
parameters {
string(
2024-03-23 20:30:57 +01:00
defaultValue: 'gulczas',
2024-03-23 20:22:37 +01:00
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
)
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
}
2024-03-23 20:11:47 +01:00
stages {
stage('Clone Repository') {
steps {
git 'https://git.wmi.amu.edu.pl/s464953/ium_464953.git'
}
}
stage('Run Script') {
2024-03-23 20:30:57 +01:00
steps {
script {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
sh 'bash download_dataset.sh $KAGGLE_USERNAME $KAGGLE_KEY'
}
}
2024-03-23 20:11:47 +01:00
}
}
stage('Archive Artifacts') {
steps {
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
}
}
}
2024-03-23 20:22:37 +01:00
}