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/17 01:07:55 UTC

[couchdb] branch jenkins-dynamic-matrix updated: Why would this need to be quoted?

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

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


The following commit(s) were added to refs/heads/jenkins-dynamic-matrix by this push:
     new 78cbc25  Why would this need to be quoted?
78cbc25 is described below

commit 78cbc25f9c89450746da91700b588458262c64c7
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Sun Jan 16 20:07:42 2022 -0500

    Why would this need to be quoted?
---
 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 10be5d8..2df2633 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -236,10 +236,10 @@ def generateContainerStage(platform) {
 
 def parallelStagesMap = meta.collectEntries { key, values ->
   if (values.image) {
-    [key: generateContainerStage(key)]
+    ["${key}": generateContainerStage(key)]
   }
   else {
-    [key: generateNativeStage(key)]
+    ["${key}": generateNativeStage(key)]
   }
 }