ium_434784/Jenkinsfile

33 lines
834 B
Plaintext
Raw Normal View History

2021-03-28 22:19:38 +02:00
pipeline {
agent any
2021-03-28 23:14:31 +02:00
2021-03-28 23:15:28 +02:00
parameters{
2021-03-28 23:06:58 +02:00
string(
2021-03-29 02:14:15 +02:00
defaultValue: '1000',
description: 'cutoff',
2021-03-29 02:41:21 +02:00
name: 'CUTOFF',
trim:false
2021-03-28 23:16:32 +02:00
)
2021-03-28 23:15:28 +02:00
}
2021-03-28 23:14:31 +02:00
stages {
2021-03-28 22:28:55 +02:00
stage('checkout: Check out from version control') {
2021-03-28 22:19:38 +02:00
steps {
2021-03-29 00:57:26 +02:00
git 'https://git.wmi.amu.edu.pl/s434784/ium_434784'
2021-03-28 22:19:38 +02:00
}
}
2021-03-28 22:41:59 +02:00
stage('sh: Shell Script') {
steps {
2021-03-29 01:04:09 +02:00
sh 'chmod +x preparations.sh'
2021-03-29 02:41:21 +02:00
sh './preparations.sh "$(CUTOFF)"'
2021-03-28 22:41:59 +02:00
}
}
2021-03-29 02:03:31 +02:00
stage('archiveArtifacts'){
steps{
archiveArtifacts 'data.dev'
archiveArtifacts 'data.train'
archiveArtifacts 'data.test'
}
}
2021-03-28 22:19:38 +02:00
}
}