You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2022/01/18 02:53:19 UTC

[couchdb] branch jenkins-dynamic-matrix-2 updated: Use short name for stage

This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch jenkins-dynamic-matrix-2
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/jenkins-dynamic-matrix-2 by this push:
     new d295399  Use short name for stage
d295399 is described below

commit d295399a69aa680b1ff7cdd68c856f7b7ebc114e
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Mon Jan 17 21:53:05 2022 -0500

    Use short name for stage
---
 build-aux/Jenkinsfile.full | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 7a28ebb..d9fec76 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -251,10 +251,10 @@ def generateContainerStage(platform) {
 
 def parallelStagesMap = meta.collectEntries { key, values ->
   if (values.image) {
-    ["${values.name}": generateContainerStage(key)]
+    ["${key}": generateContainerStage(key)]
   }
   else {
-    ["${values.name}": generateNativeStage(key)]
+    ["${key}": generateNativeStage(key)]
   }
 }