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: [],
userRemoteConfigs: [[url: 'https://github.com/your-username/your-repo.git']]])
}
}
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
}