Fix: Handles error with string cause #3989
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sample Application | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
RN_SENTRY_POD_NAME: RNSentry | |
jobs: | |
diff_check: | |
uses: ./.github/workflows/skip-ci.yml | |
cancel-previous-workflow: | |
runs-on: ubuntu-latest | |
needs: [diff_check] | |
if: ${{ needs.diff_check.outputs.skip_ci != 'true' }} | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # pin@0.12.1 | |
with: | |
access_token: ${{ github.token }} | |
build: | |
name: Build ${{ matrix.rn-architecture }} ${{ matrix.platform }} ${{ matrix.build-type }} ${{ matrix.ios-use-frameworks}} | |
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 | |
matrix: | |
rn-architecture: ['legacy', 'new'] | |
ios-use-frameworks: ['no-frameworks', 'dynamic-frameworks'] | |
platform: ['android', 'ios', 'macos'] | |
build-type: ['dev', 'production'] | |
include: | |
- platform: ios | |
runs-on: macos-14 # uses m1 https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/ | |
runtime: 'latest' | |
device: 'iPhone 14' | |
- platform: macos | |
runs-on: macos-14 | |
- platform: android | |
runs-on: ubuntu-latest | |
exclude: | |
- platform: 'android' | |
ios-use-frameworks: 'dynamic-frameworks' | |
- rn-architecture: 'new' | |
ios-use-frameworks: 'dynamic-frameworks' | |
- rn-architecture: 'new' | |
platform: 'macos' | |
- ios-use-frameworks: 'dynamic-frameworks' | |
platform: 'macos' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
cache-dependency-path: | | |
yarn.lock | |
samples/react-native/yarn.lock | |
- uses: ruby/setup-ruby@v1 | |
if: ${{ matrix.platform == 'ios' || matrix.platform == 'macos' }} | |
with: | |
working-directory: samples/react-native | |
ruby-version: '3.3.0' # based on what is used in the sample | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
cache-version: 1 # cache the installed gems | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Gradle cache | |
uses: gradle/gradle-build-action@v3 | |
- name: Setup Global Xcode Tools | |
if: ${{ matrix.platform == 'ios' }} | |
run: which xcbeautify || brew install xcbeautify | |
- name: Install SDK Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build SDK | |
run: yarn build | |
- name: Install Sample Dependencies | |
working-directory: samples/react-native | |
run: yarn install --frozen-lockfile | |
- name: Install App Pods | |
if: ${{ matrix.platform == 'ios' || matrix.platform == 'macos' }} | |
working-directory: samples/react-native | |
run: | | |
[[ "${{ matrix.platform }}" == "ios" ]] && cd ios | |
[[ "${{ matrix.platform }}" == "macos" ]] && cd macos | |
export NO_FLIPPER=1 # Flipper is causing build issues on iOS, so we disable it | |
[[ "${{ matrix.build-type }}" == "production" ]] && ENABLE_PROD=1 || ENABLE_PROD=0 | |
[[ "${{ matrix.rn-architecture }}" == "new" ]] && ENABLE_NEW_ARCH=1 || ENABLE_NEW_ARCH=0 | |
[[ "${{ matrix.ios-use-frameworks }}" == "dynamic-frameworks" ]] && export USE_FRAMEWORKS=dynamic | |
echo "ENABLE_PROD=$ENABLE_PROD" | |
echo "ENABLE_NEW_ARCH=$ENABLE_NEW_ARCH" | |
PRODUCTION=$ENABLE_PROD RCT_NEW_ARCH_ENABLED=$ENABLE_NEW_ARCH bundle exec pod install | |
cat Podfile.lock | grep $RN_SENTRY_POD_NAME | |
- name: Build Android App | |
if: ${{ matrix.platform == 'android' }} | |
working-directory: samples/react-native/android | |
run: | | |
if [[ ${{ matrix.rn-architecture }} == 'new' ]]; then | |
perl -i -pe's/newArchEnabled=false/newArchEnabled=true/g' gradle.properties | |
echo 'New Architecture enabled' | |
fi | |
[[ "${{ matrix.build-type }}" == "production" ]] && CONFIG='Release' || CONFIG='Debug' | |
echo "Building $CONFIG" | |
./gradlew ":app:assemble$CONFIG" -PreactNativeArchitectures=x86 | |
- name: Build iOS App | |
if: ${{ matrix.platform == 'ios' }} | |
working-directory: samples/react-native/ios | |
run: | | |
[[ "${{ matrix.build-type }}" == "production" ]] && CONFIG='Release' || CONFIG='Debug' | |
echo "Building $CONFIG" | |
mkdir -p "DerivedData" | |
derivedData="$(cd "DerivedData" ; pwd -P)" | |
set -o pipefail && xcodebuild \ | |
-workspace sentryreactnativesample.xcworkspace \ | |
-configuration "$CONFIG" \ | |
-scheme sentryreactnativesample \ | |
-destination 'platform=iOS Simulator,OS=${{ matrix.runtime }},name=${{ matrix.device }}' \ | |
ONLY_ACTIVE_ARCH=yes \ | |
-derivedDataPath "$derivedData" \ | |
build \ | |
| tee xcodebuild.log \ | |
| xcbeautify --quieter --is-ci --disable-colored-output | |
- name: Build macOS App | |
if: ${{ matrix.platform == 'macos' }} | |
working-directory: samples/react-native/macos | |
run: | | |
[[ "${{ matrix.build-type }}" == "production" ]] && CONFIG='Release' || CONFIG='Debug' | |
echo "Building $CONFIG" | |
mkdir -p "DerivedData" | |
derivedData="$(cd "DerivedData" ; pwd -P)" | |
set -o pipefail && xcodebuild \ | |
-workspace sentry-react-native-sample.xcworkspace \ | |
-configuration "$CONFIG" \ | |
-scheme sentry-react-native-sample-macOS \ | |
-destination 'platform=macOS' \ | |
ONLY_ACTIVE_ARCH=yes \ | |
-derivedDataPath "$derivedData" \ | |
build \ | |
| tee xcodebuild.log \ | |
| xcbeautify --quieter --is-ci --disable-colored-output | |
- name: Upload logs | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-sample-${{ matrix.rn-architecture }}-${{ matrix.platform }}-${{ matrix.build-type }}-${{ matrix.ios-use-frameworks}}-logs | |
path: samples/react-native/${{ matrix.platform }}/*.log |