ium_434804/Jenkinsfile
2021-04-08 23:09:30 +02:00

39 lines
1.2 KiB
Groovy

pipeline{
agent {
dockerfile true
}
parameters {
string(defaultValue: '100', description: 'Number of lines to cutoff', name: 'CUTOFF', trim: false)
}
stages{
stage('Docker') {
steps {
sh 'python3 ./stats.py'
}
}
stage('Stage 1'){
steps{
echo 'Hello Jenkins!'
}
}
stage('checkout: Check out from version control'){
steps{
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '87e24204-a0e1-4840-b235-2b993c922d83', url: 'https://git.wmi.amu.edu.pl/s434804/ium_434804']]])
}
}
stage('sh: Shell Script'){
steps{
withEnv(["CUTOFF=${params.CUTOFF}"]) {
sh "chmod 777 ./data.sh"
sh "./data.sh"
}
}}
stage('Archive artifacts'){
steps{
archiveArtifacts 'test.csv'
archiveArtifacts 'validation.csv'
archiveArtifacts 'train.csv'
}
}
}
}