From e19d27f0f0de4d49730a5965b2f209153809e352 Mon Sep 17 00:00:00 2001 From: Jessica Wagantall Date: Mon, 29 Jul 2019 17:14:25 -0700 Subject: [PATCH] Fix release-job.sh Nexus proxy var - 2 Avoid the usage of project specific variables. Do not use ODLNEXUSPROXY var, but instead use a generalized variable. Commit 118b7cbf171aca498d1a0a3a485bad990ad2e7b6 missed this variable. Issue: RELENG-2131 Change-Id: I3adee1f41616495aab3afe262e8fa70902d619f7 Signed-off-by: Jessica Wagantall --- ...andardize-nexus-proxy-release-job-2-9c904ce3b09d08da.yaml | 12 ++++++++++++ shell/release-job.sh | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/standardize-nexus-proxy-release-job-2-9c904ce3b09d08da.yaml diff --git a/releasenotes/notes/standardize-nexus-proxy-release-job-2-9c904ce3b09d08da.yaml b/releasenotes/notes/standardize-nexus-proxy-release-job-2-9c904ce3b09d08da.yaml new file mode 100644 index 00000000..23435673 --- /dev/null +++ b/releasenotes/notes/standardize-nexus-proxy-release-job-2-9c904ce3b09d08da.yaml @@ -0,0 +1,12 @@ +--- +upgrade: + - | + Projects using lf-release-jobs need to make sure they have the global + variable NEXUSPROXY added in Jenkins production and Jenkins sandbox + servers. The value of this variable should be the URL to the project's + Nexus server. Previous commit 118b7cbf171aca498d1a0a3a485bad990ad2e7b6 + missed this variable. +fixes: + - | + Avoid the usage of project specific variables. Do not use ODLNEXUSPROXY + var, but instead use a generalized variable. diff --git a/shell/release-job.sh b/shell/release-job.sh index e545ecac..48d8f2c2 100644 --- a/shell/release-job.sh +++ b/shell/release-job.sh @@ -69,7 +69,7 @@ for release_file in $release_files; do echo "LOGS_SERVER: $LOGS_SERVER" echo "NEXUS_URL: $NEXUS_URL" echo "NEXUS_PATH: $NEXUS_PATH" - echo "ODLNEXUSPROXY: $ODLNEXUSPROXY" + echo "NEXUSPROXY: $NEXUSPROXY" echo "JENKINS_HOSTNAME: $JENKINS_HOSTNAME" echo "SILO: $SILO" echo "PROJECT: $PROJECT" -- 2.16.6