Commit febbadf8 authored by Jaroslava Fiedlerova's avatar Jaroslava Fiedlerova

CI: Add stage to push to local git repository

parent e0d9edee
...@@ -112,6 +112,23 @@ pipeline { ...@@ -112,6 +112,23 @@ pipeline {
} }
} }
} }
stage ("Local-Repo-Push") {
steps {
script {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
triggerSlaveJob ('RAN-Local-Repo-Push', 'Local-Repo-Push')
}
}
}
post {
failure {
script {
echo "Push to local repository KO"
failingStages += '\n * RAN-Local-Repo-Push'
}
}
}
}
// Build Stages are Mandatory // Build Stages are Mandatory
stage ("Image Building Processes") { stage ("Image Building Processes") {
when { expression {doBuild} } when { expression {doBuild} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment