From cd96ccec70aab598cfbd2b49b5c2312fc3092fd0 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Thu, 1 Apr 2021 18:23:46 +1100 Subject: [PATCH] ci: use fake ID from crashpad --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39e69decb..2cf05e5b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,8 +85,10 @@ jobs: # Dump Crashpad symbols dump_syms app/olive-editor > olive-editor.sym - SYM_HEADER=($(head -n 1 olive-editor.sym)) # Read first line of symbol file - SYM_DIR=appdir/usr/share/olive-editor/symbols/olive-editor/${SYM_HEADER[3]} + #SYM_HEADER=($(head -n 1 olive-editor.sym)) # Read first line of symbol file + #SYM_DIR=appdir/usr/share/olive-editor/symbols/olive-editor/${SYM_HEADER[3]} + # HACK: For some reason, minidump_stackwalk reads identifier as all 0s + SYM_DIR=appdir/usr/share/olive-editor/symbols/olive-editor/000000000000000000000000000000000 mkdir -p "$SYM_DIR" mv olive-editor.sym "$SYM_DIR"