diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-10-11 17:55:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-11 17:55:17 -0400 |
| commit | da6824d9fd35ab19e4a9c51d0139add9fe127c13 (patch) | |
| tree | d43aef2e9c83447f2bd6921d697c57e1709140af /.ci/scripts/linux/upload.sh | |
| parent | b36f45b2398a30b204a61ba72f77e7981f5655de (diff) | |
| parent | c206a04747b5e85e2c8ca1dac10be72d119e6a10 (diff) | |
Merge pull request #11720 from lat9nq/dbg-syms
ci/linux: Upload separated debug symbols
Diffstat (limited to '.ci/scripts/linux/upload.sh')
| -rwxr-xr-x | .ci/scripts/linux/upload.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.ci/scripts/linux/upload.sh b/.ci/scripts/linux/upload.sh index e0f336427..fbb2d9c1b 100755 --- a/.ci/scripts/linux/upload.sh +++ b/.ci/scripts/linux/upload.sh @@ -59,4 +59,9 @@ if [ "${RELEASE_NAME}" = "mainline" ] || [ "${RELEASE_NAME}" = "early-access" ]; cp "build/${APPIMAGE_NAME}" "${DIR_NAME}/yuzu-${RELEASE_NAME}.AppImage" fi +# Copy debug symbols to artifacts +cd build/bin +tar $COMPRESSION_FLAGS "${ARTIFACTS_DIR}/${REV_NAME}-debug.tar.xz" *.debug +cd - + . .ci/scripts/common/post-upload.sh |
