ium_487176/Jenkinsfile

20 lines
505 B
Groovy

pipeline {
agent any
stages {
stage('Clone repository') {
steps {
git branch: 'master', url: 'https://git.wmi.amu.edu.pl/s487176/ium_487176'
}
}
stage('Run script') {
steps {
sh 'sh getdata.sh'
}
post {
always {
archiveArtifacts artifacts: 'test.csv, train.csv, val.csv', allowEmptyArchive: true
}
}
}
}
}