This is an automated email from the ASF dual-hosted git repository.
rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-jenkins-lib.git
The following commit(s) were added to refs/heads/master by this push:
new ea0f1e8 Exclude ubuntu-eu2 due to lack of disk space
ea0f1e8 is described below
commit ea0f1e89b86b17d75e847cb47b91f5b8d2408c01
Author: rfscholte <[email protected]>
AuthorDate: Sat Jul 14 12:47:02 2018 +0200
Exclude ubuntu-eu2 due to lack of disk space
---
vars/asfMavenTlpStdBuild.groovy | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/vars/asfMavenTlpStdBuild.groovy b/vars/asfMavenTlpStdBuild.groovy
index 8800eba..c5d4098 100644
--- a/vars/asfMavenTlpStdBuild.groovy
+++ b/vars/asfMavenTlpStdBuild.groovy
@@ -76,7 +76,8 @@ def call(Map params = [:]) {
first = false
String stageId = "${os}-jdk${jdk}"
tasks[stageId] = {
- node(label) {
+ // exclude probamatic nodes with && !nodename
+ node("${label} && !ubuntu-eu2") {
stage("Checkout ${stageId}") {
try {
dir('m') {