23 lines
592 B
Groovy
23 lines
592 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Checkout') {
|
|
steps {
|
|
checkout scmGit(
|
|
branches: [[name: '*/main']],
|
|
extensions: [],
|
|
userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/pms/ium-s301654']])
|
|
}
|
|
}
|
|
stage('Download') {
|
|
steps {
|
|
sh './create-dataset.sh'
|
|
}
|
|
}
|
|
stage('Archive') {
|
|
steps {
|
|
archiveArtifacts artifacts: 'iris.csv', followSymlinks: false
|
|
}
|
|
}
|
|
}
|
|
} |