From 9c29ebe093f76fe3b89cf4a366b35b14adf2c97d Mon Sep 17 00:00:00 2001 From: Chris Pappas Date: Mon, 4 Dec 2023 14:22:00 -0500 Subject: [PATCH] feat: allow configurable ecommerce version in sandbox (#1709) * feat: allow configurable ecommerce version in sandbox * chore: quality --- devops/jobs/CreateSandbox.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devops/jobs/CreateSandbox.groovy b/devops/jobs/CreateSandbox.groovy index f43c70a83..4818cd637 100644 --- a/devops/jobs/CreateSandbox.groovy +++ b/devops/jobs/CreateSandbox.groovy @@ -100,7 +100,7 @@ class CreateSandbox { } - + def ecommerceVersion = extraVars.get("ECOMMERCE_VERSION", "master") parameters { booleanParam("recreate",true,"Checking this option will terminate an existing instance if it already exists and start over from scratch") stringParam("dns_name","", @@ -145,7 +145,7 @@ class CreateSandbox { stringParam("forum_version","master","") booleanParam("ecommerce",true,"") - stringParam("ecommerce_version","master","") + stringParam("ecommerce_version",ecommerceVersion,"") booleanParam("ecommerce_decrypt_and_copy_config_enabled",true,"Checking this option will decrypt and copy ecommerce config file from configuration internal repo.") booleanParam("xqueue",false,"")