diff options
author | Dan Radez <dradez@redhat.com> | 2015-10-16 13:08:14 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2015-10-16 16:38:25 -0400 |
commit | cd82c363e5818a884e76ed3803d82e42a5ab2cff (patch) | |
tree | eb29c756ba807318b345856a5790fbee382d9787 /ci | |
parent | 24e05320bd6be675c0043f659d988c751f34f302 (diff) |
cleaning up some things
- clearing out the glance image builds, we download those from RDO
- cleaning out the underlay attachment, that should happen in the deployment
- no need to start the instack VM back up since the glance images are being downloaded
Change-Id: I82098c9e908d58a704ce8b183d902032dd056be5
Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/build.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/build.sh b/ci/build.sh index 91d78ac9..fd5bffeb 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -389,11 +389,11 @@ fi echo "Copying built OPNFV .iso file to target directory ${BUILD_DIR} ..." rm -rf ${BUILD_DIR} mkdir -p ${BUILD_DIR} -ls -s ${BUILD_BASE}/.versions ${BUILD_DIR} -ls -s ${RESULT_DIR}/*.iso* ${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} ..." -ls -s ${BUILD_BASE}/*.rpm ${BUILD_DIR} -ls -s ${BUILD_BASE}/noarch/*.rpm ${BUILD_DIR} +cp ${BUILD_BASE}/*.rpm ${BUILD_DIR} +cp ${BUILD_BASE}/noarch/*.rpm ${BUILD_DIR} if [ $POPULATE_CACHE -eq 1 ]; then if [ ! -z ${BUILD_CACHE_URI} ]; then |