Skip to content
Snippets Groups Projects
Commit b9daf15d authored by Mattia Mancini's avatar Mattia Mancini
Browse files

OSB-45: making bob global agent

parent fdc74d43
No related branches found
No related tags found
1 merge request!89Monitoring maintenance Epic branch merge
pipeline { pipeline {
agent none agent {
label 'bob'
}
environment { environment {
DOCKER_TAG = "${env.BUILD_TAG}" DOCKER_TAG = "${env.BUILD_TAG}"
} }
stages { stages {
stage('Build') { stage('Build') {
agent {
label 'bob'
}
steps { steps {
echo 'building tag ${env.DOCKER_TAG}' echo 'building tag ${env.DOCKER_TAG}'
...@@ -40,6 +39,7 @@ pipeline { ...@@ -40,6 +39,7 @@ pipeline {
} }
} }
stage('Push to nexus') { stage('Push to nexus') {
steps { steps {
script { script {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment