remove agent_label var. set pipeline-agent-garr as string

This commit is contained in:
Roberto Cirillo 2019-10-04 16:54:33 +02:00
parent 0c538c01f6
commit 5ed3477f31
1 changed files with 4 additions and 4 deletions

8
Jenkinsfile vendored
View File

@ -4,7 +4,7 @@ import org.yaml.snakeyaml.Yaml
def (options, maven_local_repo_path, maven_settings_file) = ['', '', '']
def maven_jdk = 'OpenJDK 8'
def agent_root_folder = '/var/lib/jenkins/.m2'
def agent_label = 'pipeline-agent-garr' //'pipeline-agent'
//def agent_label = 'pipeline-agent-garr' //'pipeline-agent'
if (params.Type == 'SNAPSHOT-DRY-RUN') {
echo "Configure Maven for SNAPSHOT-DRY-RUN artifacts"
@ -62,7 +62,7 @@ pipeline {
// see https://jenkins.io/doc/book/pipeline/syntax/#agent
agent {
label agent_label
label 'pipeline-agent-garr'
}
// see https://jenkins.io/doc/book/pipeline/syntax/#environment
@ -102,7 +102,7 @@ pipeline {
echo build(job: 'maven-parent', wait: true,
parameters: [[$class: 'StringParameterValue', name: 'gcube_settings', value: "${maven_settings_file}"],
[$class: 'StringParameterValue', name: 'local_repo', value: "${maven_local_repo_path}"],
[$class: 'LabelParameterValue', name: 'exec_label', label: agent_label, nodeEligibility: [$class: 'AllNodeEligibility']]
[$class: 'LabelParameterValue', name: 'exec_label', label: "pipeline-agent-garr", nodeEligibility: [$class: 'AllNodeEligibility']]
]).result
echo "Done with maven-parent"
}
@ -197,7 +197,7 @@ def buildComponents(args, maven_settings_file, maven_local_repo_path) {
build(job: name,
parameters: [[$class: 'StringParameterValue', name: 'gcube_settings', value: "${maven_settings_file}"],
[$class: 'StringParameterValue', name: 'local_repo', value: "${maven_local_repo_path}"],
[$class: 'LabelParameterValue', name: 'exec_label', label: agent_label, nodeEligibility: [$class: 'AllNodeEligibility']]
[$class: 'LabelParameterValue', name: 'exec_label', label: "pipeline-agent-garr", nodeEligibility: [$class: 'AllNodeEligibility']]
])
}
]