From 627dce5c279c6f67e118030781e3eec27b17c385 Mon Sep 17 00:00:00 2001 From: Alexander Pantiukhov Date: Wed, 9 Sep 2026 12:23:35 +0200 Subject: [PATCH 1/2] ci: reduce sample app build matrix to production-only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop dev builds from iOS, macOS, visionOS, tvOS (bare RN) and all platforms (Expo). Android dev build is kept — it's the only guard for the #6398 ABI-filter regression (arm64-v8a subset + perf-logger check). Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/sample-application-expo.yml | 4 ++-- .github/workflows/sample-application.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sample-application-expo.yml b/.github/workflows/sample-application-expo.yml index 6f0810c5e7..2dd97a7a5b 100644 --- a/.github/workflows/sample-application-expo.yml +++ b/.github/workflows/sample-application-expo.yml @@ -50,7 +50,7 @@ jobs: fail-fast: false matrix: ios-use-frameworks: ["no-frameworks", "dynamic-frameworks"] - build-type: ["dev", "production"] + build-type: ["production"] steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 @@ -147,7 +147,7 @@ jobs: strategy: fail-fast: false matrix: - build-type: ["dev", "production"] + build-type: ["production"] steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 diff --git a/.github/workflows/sample-application.yml b/.github/workflows/sample-application.yml index 67fc1faba0..d31ed45eba 100644 --- a/.github/workflows/sample-application.yml +++ b/.github/workflows/sample-application.yml @@ -59,7 +59,7 @@ jobs: matrix: rn-architecture: ["new"] ios-use-frameworks: ["no-frameworks"] - build-type: ["dev", "production"] + build-type: ["production"] sentry-consumption: ["xcframework"] # `xcframework` is the default: RNSentry vendors a prebuilt # `Sentry-Dynamic.xcframework` downloaded from sentry-cocoa's release. @@ -263,7 +263,7 @@ jobs: strategy: fail-fast: false matrix: - build-type: ["dev", "production"] + build-type: ["production"] steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 From 8beab64dca966c458f80e64ec4fb26e1504529dc Mon Sep 17 00:00:00 2001 From: Alexander Pantiukhov Date: Wed, 9 Sep 2026 16:18:14 +0200 Subject: [PATCH 2/2] build-type update in sample-application.yml --- .github/workflows/sample-application.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sample-application.yml b/.github/workflows/sample-application.yml index d31ed45eba..6a46a3c6ee 100644 --- a/.github/workflows/sample-application.yml +++ b/.github/workflows/sample-application.yml @@ -59,7 +59,7 @@ jobs: matrix: rn-architecture: ["new"] ios-use-frameworks: ["no-frameworks"] - build-type: ["production"] + build-type: ["dev", "production"] sentry-consumption: ["xcframework"] # `xcframework` is the default: RNSentry vendors a prebuilt # `Sentry-Dynamic.xcframework` downloaded from sentry-cocoa's release.