2021-03-28 20:05:59 +02:00
|
|
|
pipeline {
|
2021-03-28 21:11:46 +02:00
|
|
|
agent any
|
|
|
|
stages {
|
|
|
|
stage('checkout: Check out from version control') {
|
|
|
|
steps {
|
|
|
|
git 'https://git.wmi.amu.edu.pl/s440058/ium_440058.git'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('sh: Shell Script') {
|
|
|
|
steps {
|
|
|
|
sh 'chmod +x script.sh'
|
|
|
|
sh './script.sh ${CUTOFF}'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('archiveArtifacts') {
|
|
|
|
steps {
|
|
|
|
archiveArtifacts 'scriptTest.csv'
|
|
|
|
archiveArtifacts 'scriptDev.csv'
|
|
|
|
archiveArtifacts 'scriptTrain.csv'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-28 20:05:59 +02:00
|
|
|
}
|