diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-10-08 14:51:29 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-10-10 11:55:55 -0400 |
commit | 00b0938f1070bc817bbef1b30d4567dacd29c07e (patch) | |
tree | 96b2171b8d8c3d21148831204cd661e32f3609ed /.ci/scripts/common | |
parent | bd42bba71c09010c63853867c4d80573888bff81 (diff) |
ci/linux: Upload separated debug symbols
Creates a new archive with a debug suffix that contains the debug symbols from
compiling yuzu for mainline. The yuzu executable also gets a GNU debug link to the symbols file.
ci/linux: Compile with debug symbols and upload separately
Currently only uploads for yuzu but yuzu-cmd or other future executables can be
added to the for-loop's parameters.
Diffstat (limited to '.ci/scripts/common')
-rw-r--r-- | .ci/scripts/common/pre-upload.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/scripts/common/pre-upload.sh b/.ci/scripts/common/pre-upload.sh index 705362a3c..3583f9840 100644 --- a/.ci/scripts/common/pre-upload.sh +++ b/.ci/scripts/common/pre-upload.sh @@ -5,6 +5,6 @@ GITDATE="`git show -s --date=short --format='%ad' | sed 's/-//g'`" GITREV="`git show -s --format='%h'`" -ARTIFACTS_DIR="artifacts" +ARTIFACTS_DIR="$PWD/artifacts" mkdir -p "${ARTIFACTS_DIR}/" |