37 lines
977 B
Groovy
37 lines
977 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
parameters{
|
|
string(
|
|
defaultValue: '1000',
|
|
description: 'cutoff',
|
|
name: 'CUTOFF',
|
|
trim:false
|
|
)
|
|
}
|
|
|
|
stages {
|
|
stage('checkout: Check out from version control') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s434784/ium_434784'
|
|
}
|
|
}
|
|
stage('sh: Shell Script') {
|
|
steps {
|
|
def image = docker.build('dock')
|
|
image.inside{
|
|
sh 'chmod +x preparations.sh'
|
|
sh 'echo ${CUTOFF}'
|
|
sh './preparations.sh ${CUTOFF}'
|
|
}
|
|
}
|
|
}
|
|
stage('archiveArtifacts'){
|
|
steps{
|
|
archiveArtifacts 'data.dev'
|
|
archiveArtifacts 'data.train'
|
|
archiveArtifacts 'data.test'
|
|
}
|
|
}
|
|
}
|
|
} |