Skip to content

Commit

Permalink
misc(ci): Disable auto debug files upload (#3653)
Browse files Browse the repository at this point in the history
  • Loading branch information
krystofwoldrich authored Mar 5, 2024
1 parent acfdfa1 commit f8c1477
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
runs-on: ${{ matrix.runs-on }}
needs: [diff_check]
if: ${{ needs.diff_check.outputs.skip_ci != 'true' }}
env:
SENTRY_DISABLE_AUTO_UPLOAD: 'true'
strategy:
# we want that the matrix keeps running, default is to cancel them if it fails.
fail-fast: false
Expand Down Expand Up @@ -156,6 +158,7 @@ jobs:
needs: [diff_check]
if: ${{ needs.diff_check.outputs.skip_ci != 'true' }}
env:
SENTRY_DISABLE_AUTO_UPLOAD: 'true' # TODO: Remove this when testing against a mocked Sentry server
RN_SENTRY_POD_NAME: RNSentry
RN_DIFF_REPOSITORY: https://github.com/react-native-community/rn-diff-purge.git
strategy:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/sample-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
runs-on: ${{ matrix.runs-on }}
needs: [diff_check]
if: ${{ needs.diff_check.outputs.skip_ci != 'true' }}
env:
SENTRY_DISABLE_AUTO_UPLOAD: 'true'
strategy:
# we want that the matrix keeps running, default is to cancel them if it fails.
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion samples/react-native/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ sentry {
// code as part of your stack traces in Sentry.
//
// Default is disabled.
includeSourceContext = true
includeSourceContext = shouldSentryAutoUpload()

// Includes additional source directories into the source bundle.
// These directories are resolved relative to the project directory
Expand Down

0 comments on commit f8c1477

Please sign in to comment.