diff --git a/.github/workflows/Podfile b/.github/workflows/Podfile deleted file mode 100644 index 633feab8..00000000 --- a/.github/workflows/Podfile +++ /dev/null @@ -1,34 +0,0 @@ -# We do not support iOS <11, so set that as minimum -platform :ios, '11.0' - -plugin 'cocoapods-rome', { :pre_compile => Proc.new { |installer| - installer.pods_project.targets.each do |target| - target.build_configurations.each do |config| - # Based on the environment variable, either build with our without Swift libraries embedded (needed for iOS >10, <12.2) https://developer.apple.com/documentation/xcode-release-notes/swift-5-release-notes-for-xcode-10_2 - config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = ENV['SWIFT_EMBEDDED'] - config.build_settings['SWIFT_VERSION'] = '5' - - # Based on the environment variable, either build with our without Bitcode - config.build_settings['ENABLE_BITCODE'] = ENV['ENABLE_BITCODE'] - config.build_settings['BITCODE_GENERATION_MODE'] = 'bitcode' - - # Exclude building for arm64 simulator (M1 chipset). XCFrameworks are needed to support this properly, future work - config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64' - - # These two options seem to be defaults already, so probably not critical - config.build_settings['VALIDATE_WORKSPACE'] = 'YES' - config.build_settings['BUILD_LIBRARIES_FOR_DISTRIBUTION'] = 'YES' - end - end - - installer.pods_project.save -}, - - dsym: true, - configuration: 'Release' -} - -target 'backtrace' do - use_frameworks! - pod 'Backtrace' -end \ No newline at end of file