Apex: fixes downloading artifacts for rpms/iso 19/35419/1
authorTim Rozet <trozet@redhat.com>
Fri, 26 May 2017 18:45:34 +0000 (14:45 -0400)
committerTim Rozet <trozet@redhat.com>
Fri, 26 May 2017 18:48:09 +0000 (14:48 -0400)
We always update the latest properties file on daily builds.  We should
be pulling that to find artifacts rather than the current date properties
versions.

Change-Id: I52d3b53fdd17ecb6cbb43759309568d0c22013f8
Signed-off-by: Tim Rozet <trozet@redhat.com>
jjb/apex/apex-download-artifact.sh

index 2d39e98..206c627 100755 (executable)
@@ -26,11 +26,10 @@ else
   echo "Will download RPMs..."
 
   # Must be RPMs/ISO
-  export OPNFV_ARTIFACT_VERSION=$(date -u +"%Y-%m-%d")
-  echo "Downloading opnfv-${OPNFV_ARTIFACT_VERSION}.properties"
+  echo "Downloading latest properties file"
 
   # get the properties file in order to get info regarding artifacts
-  curl --fail -s -o $BUILD_DIRECTORY/opnfv.properties http://$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.properties
+  curl --fail -s -o $BUILD_DIRECTORY/opnfv.properties http://$GS_URL/latest.properties
 
   # source the file so we get OPNFV vars
   source $BUILD_DIRECTORY/opnfv.properties