2021-03-23 20:31:17 +01:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
|
|
|
|
stages {
|
2021-03-28 13:06:52 +02:00
|
|
|
stage('checkout: Check out from version control') {
|
2021-03-23 20:31:17 +01:00
|
|
|
steps {
|
2021-03-28 13:06:52 +02:00
|
|
|
git credentialsId: 'f746c8e0-e974-4758-838d-1920a7b0e3dc',
|
|
|
|
url: 'https://git.wmi.amu.edu.pl/s434742/ium_434742'
|
2021-03-23 20:31:17 +01:00
|
|
|
}
|
|
|
|
}
|
2021-03-28 13:06:52 +02:00
|
|
|
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'
|
|
|
|
}
|
|
|
|
}
|
2021-03-23 20:31:17 +01:00
|
|
|
}
|
2021-03-28 13:06:52 +02:00
|
|
|
}
|