ium_z486867/Jenkinsfile

27 lines
697 B
Plaintext
Raw Normal View History

2023-03-25 13:53:02 +01:00
pipeline {
agent any
stages {
stage('Clone repository') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false,
extensions: [], submoduleCfg: [],
2023-03-25 13:54:02 +01:00
userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s486867/ium_s486867']]])
2023-03-25 13:53:02 +01:00
}
}
stage('Process data') {
steps {
sh './process_data.sh'
}
}
stage('Archive artifacts') {
steps {
archiveArtifacts artifacts: 'results.txt', onlyIfSuccessful: true
}
}
2023-03-25 13:31:36 +01:00
}
2023-03-25 13:53:02 +01:00
}