From 18a72b4845907dfd007867b4d10fdcf20f9aa16c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoann=20Rodi=C3=A8re?= Date: Mon, 13 Dec 2021 18:07:42 +0100 Subject: [PATCH] HV-1860 Use new, container-enabled VMs for releases We don't need the containers, but we need the more up-to-date software (env, in particular, for the -S option). --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a8a748b6e1..bbb8a9082b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -97,7 +97,7 @@ import org.hibernate.jenkins.pipeline.helpers.version.Version // Default node pattern, to be used for resource-intensive stages. // Should not include the controller node. -@Field final String NODE_PATTERN_BASE = 'Worker' +@Field final String NODE_PATTERN_BASE = 'Worker&&Containers' // Quick-use node pattern, to be used for very light, quick, and environment-independent stages, // such as sending a notification. May include the controller node in particular. @Field final String QUICK_USE_NODE_PATTERN = 'Controller||Worker'