Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 0345ecb

Browse files
committed
DEBUG: added verbose to tar in publish-project.sh
We seem to run out of space while tar-ing together archive, source has to have some accidental big thing opened for reading, hopefully verbose flag shows it Signed-off-by: Olev Kartau <olev.kartau@intel.com>
1 parent 9155b3a commit 0345ecb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

docker/publish-project.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ rsync -lv latest ${_RSYNC_DEST_BASE}/../
147147
# create clean tarball of source, leaving out .git* and parts created by build and test stages
148148
cd $WORKSPACE
149149
_tar_file=`mktemp --suffix=.tar.gz`
150-
tar czf ${_tar_file} . \
150+
# XXX DEBUG: added v for verbosity to debug out-of-space issue on Ubuntu 17.04
151+
tar czfv ${_tar_file} . \
151152
--transform "s,^\.,${JOB_NAME}-${CI_BUILD_ID},S" \
152153
--exclude 'bitbake*.log*' --exclude 'build' --exclude 'build.pre' \
153154
--exclude 'buildhistory*' --exclude 'refkit_ci*' \

0 commit comments

Comments
 (0)