Skip to content

Commit bbe6658

Browse files
authored
ci: Fix RN tester (#5714)
* ci: Fix RN tester * Use fixed branch * Fix build
1 parent d8b2303 commit bbe6658

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed

.github/workflows/test-cross-platform.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ jobs:
6161
CONFIGURATION: Release
6262
DESTINATION: "platform=iOS Simulator,OS=latest,name=iPhone 16"
6363
run: |
64+
set -o pipefail
6465
env NSUnbufferedIO=YES \
6566
xcodebuild -workspace *.xcworkspace \
6667
-scheme $SCHEME -configuration $CONFIGURATION \
6768
-destination "$DESTINATION" \
68-
test | xcbeautify
69+
test SWIFT_ACTIVE_COMPILATION_CONDITIONS=CROSS_PLATFORM_TEST GCC_PREPROCESSOR_DEFINITIONS"=CROSS_PLATFORM_TEST=1" | xcbeautify

Sources/Sentry/include/HybridPublic/SentryEnvelope.h

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,7 @@
44
# import "PrivatesHeader.h"
55
#endif
66

7-
#if COCOAPODS
87
@class SentrySdkInfo;
9-
#else
10-
11-
# if __has_include(<Sentry/SentrySdkInfo.h>)
12-
# import <Sentry/SentrySdkInfo.h>
13-
# else
14-
# import "SentrySdkInfo.h"
15-
# endif
16-
17-
#endif
18-
198
@class SentryAttachment;
209
@class SentryEnvelopeItemHeader;
2110
@class SentryEvent;

Sources/Sentry/include/SentryPrivate.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
#import "SentryRandom.h"
2929
#import "SentrySDKInternal.h"
3030
#import "SentryScope+PrivateSwift.h"
31-
#import "SentrySdkInfo.h"
3231
#import "SentrySerialization.h"
3332
#import "SentrySession.h"
3433
#import "SentrySpanDataKey.h"

0 commit comments

Comments
 (0)