From e8fbb98ab646e61861ba3108a2333d6e6b596281 Mon Sep 17 00:00:00 2001 From: Dale Glass Date: Tue, 6 Jun 2023 19:01:15 +0200 Subject: [PATCH] Build with crash reporting against Sentry --- .github/workflows/linux_server_build.yml | 2 ++ .github/workflows/master_build.yml | 2 ++ .github/workflows/pr_build.yml | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux_server_build.yml b/.github/workflows/linux_server_build.yml index 32dee8afec..4aa5ce9d4c 100644 --- a/.github/workflows/linux_server_build.yml +++ b/.github/workflows/linux_server_build.yml @@ -19,6 +19,8 @@ env: UPLOAD_BUCKET: overte-public UPLOAD_REGION: fra1 UPLOAD_ENDPOINT: "https://fra1.digitaloceanspaces.com" + CMAKE_BACKTRACE_URL: ${{ secrets.SENTRY_MINIDUMP_ENDPOINT }} + CMAKE_BACKTRACE_TOKEN: server_${{ github.event.number }}_${{ github.sha }} jobs: build: diff --git a/.github/workflows/master_build.yml b/.github/workflows/master_build.yml index 022806c3fa..4893d63e3e 100644 --- a/.github/workflows/master_build.yml +++ b/.github/workflows/master_build.yml @@ -24,6 +24,8 @@ env: UPLOAD_BUCKET: overte-public UPLOAD_REGION: fra1 UPLOAD_ENDPOINT: "https://fra1.digitaloceanspaces.com" + CMAKE_BACKTRACE_URL: ${{ secrets.SENTRY_MINIDUMP_ENDPOINT }} + CMAKE_BACKTRACE_TOKEN: master_${{ github.event.number }}_${{ github.sha }} # OSX-specific variables DEVELOPER_DIR: /Applications/Xcode_11.2.app/Contents/Developer diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml index d7f3953034..22c26754af 100644 --- a/.github/workflows/pr_build.yml +++ b/.github/workflows/pr_build.yml @@ -21,7 +21,7 @@ env: RELEASE_NUMBER: ${{ github.event.number }} VERSION_CODE: ${{ github.event.number }} # Sentry Crash Reporting - CMAKE_BACKTRACE_URL: + CMAKE_BACKTRACE_URL: ${{ secrets.SENTRY_MINIDUMP_ENDPOINT }} CMAKE_BACKTRACE_TOKEN: PR_${{ github.event.number }}_${{ github.sha }} UPLOAD_BUCKET: overte-public