changing copying to linking to save time and space on the build 75/3275/1
authorDan Radez <dradez@redhat.com>
Thu, 12 Nov 2015 23:44:41 +0000 (18:44 -0500)
committerDan Radez <dradez@redhat.com>
Fri, 13 Nov 2015 16:13:30 +0000 (11:13 -0500)
Change-Id: I6a0a63f04c0693b9dd2f4a137475ef00c2377455

ci/build.sh

index c052ab0..82d5b63 100755 (executable)
@@ -386,14 +386,14 @@ if [ $rc -gt 0 ]; then
     rc=100
     exit $rc
 fi
-echo "Copying built OPNFV .iso file to target directory ${BUILD_DIR} ..."
+echo "Linking built OPNFV .iso file to target directory ${BUILD_DIR} ..."
 rm -rf ${BUILD_DIR}
 mkdir -p ${BUILD_DIR}
-cp ${BUILD_BASE}/.versions ${BUILD_DIR}
-cp ${RESULT_DIR}/*.iso* ${BUILD_DIR}
-echo "Copying built OPNFV .rpm files to target directory ${BUILD_DIR} ..."
-cp ${BUILD_BASE}/*.rpm ${BUILD_DIR}
-cp ${BUILD_BASE}/noarch/*.rpm ${BUILD_DIR}
+ln -s ${BUILD_BASE}/.versions ${BUILD_DIR}
+ln -s ${RESULT_DIR}/*.iso* ${BUILD_DIR}
+echo "Linking built OPNFV .rpm files to target directory ${BUILD_DIR} ..."
+ln -s ${BUILD_BASE}/*.rpm ${BUILD_DIR}
+ln -s ${BUILD_BASE}/noarch/*.rpm ${BUILD_DIR}
 
 if [ $POPULATE_CACHE -eq 1 ]; then
     if [ ! -z ${BUILD_CACHE_URI} ]; then