Skip to content

Commit dd6d563

Browse files
authored
Specify platform to exclude tvOS, watchOS (#541) (#542)
tvOS and watchOS sdks and their simulators are not installed by default with Xcode 14. So specifying osx and ios to workaround them. This podspec is mean to bring in the binaries to Pods folder so other tools are able to use it. It does not build or mean to be consumed as a library
1 parent b62c5e3 commit dd6d563

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Bluepill.podspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Pod::Spec.new do |s|
22
s.name = 'Bluepill'
33
s.version = `echo $(git describe --always --tags | cut -c 2-)`
4+
s.ios.deployment_target = '13.0'
5+
s.osx.deployment_target = '12.0'
46
s.summary = 'A tool to run iOS tests in parallel using multiple simulators.'
57
s.homepage = 'https://github.com/linkedin/bluepill'
68
s.license = { type: 'BSD', file: 'LICENSE' }

0 commit comments

Comments
 (0)