From 1f7e2d1cadf160d0d516567b6970cdd876c29c6d Mon Sep 17 00:00:00 2001 From: lat9nq Date: Sun, 31 Jul 2022 01:25:40 -0400 Subject: ci: Graft source when archiving Instead of including yuzu and all the sources it uses directly, include only what specifically belongs to yuzu. Submodules can be downloaded separately later using git since a shallow clone includes minimally all the repository information needed for it. --- .ci/scripts/common/post-upload.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.ci/scripts/common/post-upload.sh') diff --git a/.ci/scripts/common/post-upload.sh b/.ci/scripts/common/post-upload.sh index 7f910b2b3..576f1ffaa 100644 --- a/.ci/scripts/common/post-upload.sh +++ b/.ci/scripts/common/post-upload.sh @@ -8,7 +8,8 @@ cp LICENSE.txt "$DIR_NAME" cp README.md "$DIR_NAME" if [[ -z "${NO_SOURCE_PACK}" ]]; then - tar -cJvf "${REV_NAME}-source.tar.xz" src externals CMakeLists.txt README.md LICENSE.txt + git clone --depth 1 file://$(readlink -e .) ${REV_NAME}-source + tar -cJvf "${REV_NAME}-source.tar.xz" ${REV_NAME}-source cp -v "${REV_NAME}-source.tar.xz" "$DIR_NAME" fi -- cgit v1.2.3