ium_434742/Jenkinsfile
2021-03-28 13:10:03 +02:00

25 lines
683 B
Groovy

pipeline {
agent any
stages {
stage('checkout: Check out from version control') {
steps {
git credentialsId: 'f746c8e0-e974-4758-838d-1920a7b0e3dc',
url: 'https://git.wmi.amu.edu.pl/s434742/ium_434742'
}
}
stage('sh: Shell Script') {
steps {
sh 'chmod +x avocado-preprocessing.sh'
sh './avocado-preprocessing.sh ${CUTOFF}'
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts 'test.csv'
archiveArtifacts 'dev.csv'
archiveArtifacts 'train.csv'
}
}
}
}