ium_430705/Jenkinsfile

29 lines
1016 B
Plaintext
Raw Normal View History

2021-03-28 20:26:06 +02:00
pipeline{
2021-03-28 19:14:52 +02:00
agent any
2021-03-28 20:26:06 +02:00
properties([parameters([text(defaultValue: '50', description: 'Number of lines to cutoff', name: 'CUTOFF')])])
stages{
stage('Stage 1'){
steps{
echo 'Hello World!'
}
}
stage('checkout: Check out from version control'){
steps{
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '3e2b5ea1-7a08-4418-892b-c562315036a4', url: 'https://git.wmi.amu.edu.pl/s430705/ium_430705']]])
}
}
stage('sh: Shell Script'){
steps{
2021-03-28 20:30:56 +02:00
withEnv(["CUTOFF=${params.CUTOFF}"])
2021-03-28 20:26:06 +02:00
./script.sh
}
}
stage('Archive artifacts'){
steps{
archiveArtifacts 'test.csv'
archiveArtifacts 'dev.csv'
archiveArtifacts 'train.csv'
2021-03-28 19:14:52 +02:00
}
}
}
}