From acd32b74682f2fba487ab0dd17b32fadae376ade Mon Sep 17 00:00:00 2001 From: Matt Knop Date: Tue, 24 Oct 2023 09:20:08 -0600 Subject: [PATCH] adding unit time to container name --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f672067d8..1e0ddb049 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,7 +28,7 @@ pipeline { CICD_URL="https://raw.githubusercontent.com/RedHatInsights/cicd-tools/alternative-cicd-tools" HELPER_FUNCTIONS="${CICD_URL}/helpers/general.sh" BOOTSTRAP_FUNCTIONS="${CICD_URL}/src/bootstrap.sh" - + CURR_TIME=sh(script: "date +%s", returnStdout: true).trim() } stages { @@ -54,7 +54,7 @@ pipeline { parallel { stage('Unit Tests') { environment { - TEST_CONTAINER="clowder-ci-unit-tests-${IMAGE_TAG}" + TEST_CONTAINER="clowder-ci-unit-tests-${IMAGE_TAG}-${CURR_TIME}" } steps { withVault([configuration: configuration, vaultSecrets: secrets]) { @@ -71,7 +71,7 @@ pipeline { stage('Minikube E2E Tests') { environment { - CONTAINER_NAME="clowder-ci-minikube-e2e-tests-${IMAGE_TAG}" + CONTAINER_NAME="clowder-ci-minikube-e2e-tests-${IMAGE_TAG}-${CURR_TIME}" } steps { withVault([configuration: configuration, vaultSecrets: secrets]) {