Skip to content

Commit

Permalink
[Infra] Move CocoapodsIntegrationTest/ out of repo root (#12221)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 authored Dec 27, 2023
1 parent 393d768 commit 05f0a1c
Show file tree
Hide file tree
Showing 19 changed files with 42 additions and 41 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cocoapods-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: cocoapods-integration
on:
pull_request:
paths:
- 'CocoapodsIntegrationTest/**'
- 'IntegrationTesting/CocoapodsIntegrationTest/**'
- '.github/workflows/cocoapods-integration.yml'
- 'Gemfile*'
schedule:
Expand All @@ -29,6 +29,6 @@ jobs:
run: brew install coreutils
- name: Build and test
run: |
scripts/third_party/travis/retry.sh ./CocoapodsIntegrationTest/scripts/build_with_environment.sh \
--gemfile=./CocoapodsIntegrationTest/TestEnvironments/Cocoapods_multiprojects_frameworks/Gemfile \
--podfile=./CocoapodsIntegrationTest/TestEnvironments/Cocoapods_multiprojects_frameworks/Podfile
scripts/third_party/travis/retry.sh ./IntegrationTesting/CocoapodsIntegrationTest/scripts/build_with_environment.sh \
--gemfile=./IntegrationTesting/CocoapodsIntegrationTest/TestEnvironments/Cocoapods_multiprojects_frameworks/Gemfile \
--podfile=./IntegrationTesting/CocoapodsIntegrationTest/TestEnvironments/Cocoapods_multiprojects_frameworks/Podfile

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
source 'https://github.com/firebase/SpecsDev.git'
source 'https://github.com/firebase/SpecsStaging.git'
source 'https://cdn.cocoapods.org/'

# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'

target 'CocoapodsIntegrationTest' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'FirebaseABTesting', :path => '../../'
pod 'FirebaseAppDistribution', :path => '../../'
pod 'FirebaseAppCheckInterop', :path => '../../'
pod 'FirebaseCore', :path => '../../'
pod 'FirebaseCoreExtension', :path => '../../'
pod 'FirebaseCoreInternal', :path => '../../'
pod 'FirebaseCrashlytics', :path => '../../'
pod 'FirebaseAuth', :path => '../../'
pod 'FirebaseAuthInterop', :path => '../../'
pod 'FirebaseDatabase', :path => '../../'
pod 'FirebaseDynamicLinks', :path => '../../'
pod 'FirebaseFirestore', :path => '../../'
pod 'FirebaseFunctions', :path => '../../'
pod 'FirebaseInAppMessaging', :path => '../../'
pod 'FirebaseInstallations', :path => '../../'
pod 'FirebaseMessaging', :path => '../../'
pod 'FirebaseMessagingInterop', :path => '../../'
pod 'FirebasePerformance', :path => '../../'
pod 'FirebaseStorage', :path => '../../'
end

# Using the new speed-enhancing features available with CocoaPods 1.7+
# [sudo] gem install cocoapods --pre
install! 'cocoapods',
:generate_multiple_pod_projects => true,
:incremental_installation => true
3 changes: 2 additions & 1 deletion scripts/check_imports.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ let skipDirPatterns = ["/Sample/", "/Pods/",
"FirebaseDynamicLinks/Tests/Integration",
"FirebaseInAppMessaging/Tests/Integration/",
"SymbolCollisionTest/", "/gen/",
"CocoapodsIntegrationTest/", "FirebasePerformance/Tests/TestApp/",
"IntegrationTesting/CocoapodsIntegrationTest/",
"FirebasePerformance/Tests/TestApp/",
"cmake-build-debug/", "build/", "ObjCIntegration/",
"FirebasePerformance/Tests/FIRPerfE2E/"] +
[
Expand Down

0 comments on commit 05f0a1c

Please sign in to comment.