24 lines
585 B
Groovy
24 lines
585 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Clone Repository') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s464953/ium_464953.git'
|
|
}
|
|
}
|
|
stage('Run Script') {
|
|
steps {
|
|
script {
|
|
sh 'bash download_dataset.sh $KAGGLE_USERNAME $KAGGLE_KEY'
|
|
}
|
|
}
|
|
}
|
|
stage('Archive Artifacts') {
|
|
steps {
|
|
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
|
|
}
|
|
}
|
|
}
|
|
}
|