ium_440058/Jenkinsfile

23 lines
553 B
Plaintext
Raw Normal View History

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 {
2021-03-28 21:13:19 +02:00
sh 'chmod +x bash.sh'
2021-03-28 21:14:28 +02:00
sh './bash.sh ${CUTOFF}'
2021-03-28 21:11:46 +02:00
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts 'scriptTest.csv'
archiveArtifacts 'scriptDev.csv'
archiveArtifacts 'scriptTrain.csv'
}
}
}
2021-03-28 20:05:59 +02:00
}