Skip to content

Commit

Permalink
test assets without facebook build
Browse files Browse the repository at this point in the history
  • Loading branch information
vazarkevych committed Dec 23, 2022
1 parent 18310fc commit 0d7fb66
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 20 deletions.
3 changes: 0 additions & 3 deletions Parse.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ Pod::Spec.new do |s|
'GENERATE_INFOPLIST_FILE' => 'YES'
}
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=*simulator*]' => 'x86_64 armv7 arm64' }
# s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'x86_64 armv7 arm64' }
end

s.subspec 'FacebookUtils-iOS' do |s|
Expand Down Expand Up @@ -159,7 +158,6 @@ Pod::Spec.new do |s|
'GENERATE_INFOPLIST_FILE' => 'YES'
}
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'x86_64 armv7 arm64' }
# s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'x86_64 armv7 arm64' }
end

s.subspec 'FacebookUtils-tvOS' do |s|
Expand Down Expand Up @@ -192,7 +190,6 @@ Pod::Spec.new do |s|
'GENERATE_INFOPLIST_FILE' => 'YES'
}
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=*simulator*]' => 'x86_64 armv7 arm64' }
# s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'x86_64 armv7 arm64' }
end

s.subspec 'TwitterUtils' do |s|
Expand Down
34 changes: 17 additions & 17 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -346,23 +346,23 @@ namespace :package do
[watchos_framework_path, bolts_path],
package_watchos_name)

Rake::Task['build:facebook_utils:ios'].invoke
ios_fb_utils_framework_path = File.join(build_folder, 'iOS', 'ParseFacebookUtilsV4.framework')
make_package(release_folder, [ios_fb_utils_framework_path], 'ParseFacebookUtils-iOS.zip')

Rake::Task['build:twitter_utils:ios'].invoke
ios_tw_utils_framework_path = File.join(build_folder, 'iOS', 'ParseTwitterUtils.framework')
make_package(release_folder, [ios_tw_utils_framework_path], 'ParseTwitterUtils-iOS.zip')

Rake::Task['build:facebook_utils:tvos'].invoke
tvos_fb_utils_framework_path = File.join(build_folder, 'tvOS', 'ParseFacebookUtilsV4.framework')
make_package(release_folder, [tvos_fb_utils_framework_path], 'ParseFacebookUtils-tvOS.zip')

Rake::Task['build:parseui:framework'].invoke
parseui_framework_path = File.join(build_folder, 'iOS', 'ParseUI.framework')
make_package(release_folder,
[parseui_framework_path],
package_parseui_name)
# Rake::Task['build:facebook_utils:ios'].invoke
# ios_fb_utils_framework_path = File.join(build_folder, 'iOS', 'ParseFacebookUtilsV4.framework')
# make_package(release_folder, [ios_fb_utils_framework_path], 'ParseFacebookUtils-iOS.zip')

# Rake::Task['build:twitter_utils:ios'].invoke
# ios_tw_utils_framework_path = File.join(build_folder, 'iOS', 'ParseTwitterUtils.framework')
# make_package(release_folder, [ios_tw_utils_framework_path], 'ParseTwitterUtils-iOS.zip')

# Rake::Task['build:facebook_utils:tvos'].invoke
# tvos_fb_utils_framework_path = File.join(build_folder, 'tvOS', 'ParseFacebookUtilsV4.framework')
# make_package(release_folder, [tvos_fb_utils_framework_path], 'ParseFacebookUtils-tvOS.zip')

# Rake::Task['build:parseui:framework'].invoke
# parseui_framework_path = File.join(build_folder, 'iOS', 'ParseUI.framework')
# make_package(release_folder,
# [parseui_framework_path],
# package_parseui_name)
end

desc 'Build and package all starter projects for the release'
Expand Down

0 comments on commit 0d7fb66

Please sign in to comment.