Skip to content

Commit

Permalink
visionOS: changed CI job to Release
Browse files Browse the repository at this point in the history
The `build_tv_watch_mac` job already builds on Release mode (`Carthage`'s default).
This would have also helped detect the issue fixed by #3034.

I've also changed the API tester jobs to compile on release, though those aren't ran by CI.
  • Loading branch information
NachoSoto committed Aug 17, 2023
1 parent 75c0d03 commit 9f14d97
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ platform :ios do
workspace: 'RevenueCat.xcworkspace',
scheme: 'RevenueCat',
destination: 'generic/platform=visionOS',
configuration: 'release',
xcargs: "CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED=NO"
)
end
Expand Down Expand Up @@ -237,7 +238,8 @@ platform :ios do
xcodebuild(
workspace: 'RevenueCat.xcworkspace',
scheme: 'SwiftAPITester',
destination: 'generic/platform=iOS Simulator'
destination: 'generic/platform=iOS Simulator',
configuration: 'release',
)
end

Expand All @@ -246,7 +248,8 @@ platform :ios do
xcodebuild(
workspace: 'RevenueCat.xcworkspace',
scheme: 'ObjCAPITester',
destination: 'generic/platform=iOS Simulator'
destination: 'generic/platform=iOS Simulator',
configuration: 'release',
)
end

Expand All @@ -256,7 +259,8 @@ platform :ios do
project: 'Tests/APITesters/CustomEntitlementComputationSwiftAPITester/CustomEntitlementComputationSwiftAPITester.xcodeproj',
scheme: 'SwiftAPITester',
destination: 'generic/platform=iOS',
xcargs: "CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED=NO"
xcargs: "CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED=NO",
configuration: 'release',
)
end

Expand Down

0 comments on commit 9f14d97

Please sign in to comment.