From 451bea7f22d63677853b0b06983c940fe1c7f3bb Mon Sep 17 00:00:00 2001 From: David Sharp Date: Thu, 16 Feb 2017 17:44:02 -0800 Subject: [PATCH] Stop printing Ivy credentials during coverity scan Rely on the credentials being in the environment rather than explicitly passing them. Add a comment to document the requirement. See also: 0d840bb29ea289d398f95c7394072ad168722414 --- concourse/scripts/scan_with_coverity.bash | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/concourse/scripts/scan_with_coverity.bash b/concourse/scripts/scan_with_coverity.bash index 9d38834179..6af535d940 100755 --- a/concourse/scripts/scan_with_coverity.bash +++ b/concourse/scripts/scan_with_coverity.bash @@ -31,7 +31,9 @@ function generate_build_number() { function make_sync_tools() { pushd gpdb_src/gpAux - make IVYREPO_HOST="${IVYREPO_HOST}" IVYREPO_REALM="${IVYREPO_REALM}" IVYREPO_USER="${IVYREPO_USER}" IVYREPO_PASSWD="${IVYREPO_PASSWD}" sync_tools + # Requires these variables in the env: + # IVYREPO_HOST IVYREPO_REALM IVYREPO_USER IVYREPO_PASSWD + make sync_tools # We have compiled LLVM with native zlib on CentOS6 and not from # the zlib downloaded from artifacts. Therefore, remove the zlib # downloaded from artifacts in order to use the native zlib. -- GitLab