ium_487176/Jenkinsfile

28 lines
645 B
Plaintext
Raw Normal View History

pipeline {
agent any
stages {
stage('Clone repository') {
steps {
git branch: 'master', url: 'https://git.wmi.amu.edu.pl/s487176/ium_487176'
}
}
2023-04-19 23:24:36 +02:00
stage('Docker'){
agent {
dockerfile true
}
}
stage('Run script') {
steps {
sh 'sh getdata.sh'
}
post {
always {
archiveArtifacts artifacts: 'test.csv, train.csv, val.csv', allowEmptyArchive: true
}
}
}
2023-04-19 23:24:36 +02:00
}
}