ium_434784/Jenkinsfile
Maciej Sobkowiak 801a2f1c8d
All checks were successful
s434784-training/pipeline/head This commit looks good
.
2021-05-16 21:08:09 +02:00

39 lines
1.0 KiB
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 {
script {
def image = docker.build('dock')
image.inside{
sh 'chmod +x preprocesing.py'
sh 'echo ${CUTOFF}'
sh 'python3 preprocesing.py ${CUTOFF}'
}
}
}
}
stage('archiveArtifacts'){
steps{
archiveArtifacts 'test.csv'
archiveArtifacts 'validate.csv'
archiveArtifacts 'train.csv'
}
}
}
}