Skip to content

Commit

Permalink
chore: remove Sentry upload step
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwellmattryan committed Jul 13, 2022
1 parent d3e7d55 commit 8f34ec6
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,19 +119,19 @@ jobs:
run: npm i -g @sentry/cli
if: ${{ startsWith(github.ref, 'refs/tags/desktop') && matrix.os != 'macos-10.15' }}

- name: Strip backend debug info and upload to Sentry (Linux)
run: |
cp index.node index.node.dbg
strip -S index.node
objcopy --add-gnu-debuglink=index.node.dbg index.node
sentry-cli difutil check index.node.dbg
sentry-cli upload-dif -o "iota-foundation-h4" -p "firefly-backend" --include-sources index.node.dbg
sentry-cli upload-dif -o "iota-foundation-h4" -p "firefly-desktop" --include-sources index.node.dbg
working-directory: packages/backend/bindings/node
env:
SENTRY_LOG_LEVEL: 'debug'
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
if: ${{ startsWith(github.ref, 'refs/tags/desktop') && matrix.os == 'ubuntu-18.04' }}
# - name: Strip backend debug info and upload to Sentry (Linux)
# run: |
# cp index.node index.node.dbg
# strip -S index.node
# objcopy --add-gnu-debuglink=index.node.dbg index.node
# sentry-cli difutil check index.node.dbg
# sentry-cli upload-dif -o "iota-foundation-h4" -p "firefly-backend" --include-sources index.node.dbg
# sentry-cli upload-dif -o "iota-foundation-h4" -p "firefly-desktop" --include-sources index.node.dbg
# working-directory: packages/backend/bindings/node
# env:
# SENTRY_LOG_LEVEL: 'debug'
# SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
# if: ${{ startsWith(github.ref, 'refs/tags/desktop') && matrix.os == 'ubuntu-18.04' }}

- name: Upload backend debug info to Sentry (Windows)
run: |
Expand Down

0 comments on commit 8f34ec6

Please sign in to comment.