Skip to content

Commit af0198d

Browse files
committed
comment out
1 parent b56b93d commit af0198d

File tree

4 files changed

+402
-404
lines changed

4 files changed

+402
-404
lines changed

.github/workflows/crashlytics.yml

Lines changed: 76 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,24 @@ concurrency:
2424
cancel-in-progress: true
2525

2626
jobs:
27-
spm:
28-
uses: ./.github/workflows/common.yml
29-
with:
30-
target: FirebaseCrashlyticsUnit
27+
# spm:
28+
# uses: ./.github/workflows/common.yml
29+
# with:
30+
# target: FirebaseCrashlyticsUnit
3131

32-
catalyst:
33-
uses: ./.github/workflows/common_catalyst.yml
34-
with:
35-
product: FirebaseCrashlytics
36-
target: FirebaseCrashlytics-Unit-unit
32+
# catalyst:
33+
# uses: ./.github/workflows/common_catalyst.yml
34+
# with:
35+
# product: FirebaseCrashlytics
36+
# target: FirebaseCrashlytics-Unit-unit
3737

38-
pod_lib_lint:
39-
uses: ./.github/workflows/common_cocoapods.yml
40-
with:
41-
product: FirebaseCrashlytics
42-
buildonly_platforms: tvOS, macOS, watchOS
38+
# pod_lib_lint:
39+
# uses: ./.github/workflows/common_cocoapods.yml
40+
# with:
41+
# product: FirebaseCrashlytics
42+
# buildonly_platforms: tvOS, macOS, watchOS
4343

4444
quickstart:
45-
# Don't run on private repo unless it is a PR.
46-
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
4745
uses: ./.github/workflows/common_quickstart.yml
4846
with:
4947
product: Crashlytics
@@ -60,68 +58,68 @@ jobs:
6058
secrets:
6159
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
6260

63-
quickstart-ftl-cron-only:
64-
# Don't run on private repo.
65-
if: github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule'
61+
# quickstart-ftl-cron-only:
62+
# # Don't run on private repo.
63+
# if: github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule'
6664

67-
env:
68-
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
69-
runs-on: macos-15
70-
steps:
71-
- uses: actions/checkout@v4
72-
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
73-
- uses: actions/setup-python@v5
74-
with:
75-
python-version: '3.11'
76-
- name: Xcode
77-
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
78-
- name: Setup quickstart
79-
run: scripts/setup_quickstart.sh crashlytics
80-
env:
81-
LEGACY: true
82-
- name: Install Secret GoogleService-Info.plist
83-
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-crashlytics.plist.gpg \
84-
quickstart-ios/crashlytics/GoogleService-Info.plist "$plist_secret"
85-
- name: Build swift quickstart
86-
run: |
87-
mkdir quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics
88-
# Set the deployed pod location of run and upload-symbols with the development pod version.
89-
cp Crashlytics/run quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/
90-
cp Crashlytics/upload-symbols quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/
91-
([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_ftl.sh Crashlytics swift)
92-
env:
93-
LEGACY: true
94-
- id: ftl_test
95-
uses: FirebaseExtended/github-actions/[email protected]
96-
with:
97-
credentials_json: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_CREDENTIALS }}
98-
testapp_dir: quickstart-ios/build-for-testing
99-
test_type: "xctest"
65+
# env:
66+
# plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
67+
# runs-on: macos-15
68+
# steps:
69+
# - uses: actions/checkout@v4
70+
# - uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
71+
# - uses: actions/setup-python@v5
72+
# with:
73+
# python-version: '3.11'
74+
# - name: Xcode
75+
# run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
76+
# - name: Setup quickstart
77+
# run: scripts/setup_quickstart.sh crashlytics
78+
# env:
79+
# LEGACY: true
80+
# - name: Install Secret GoogleService-Info.plist
81+
# run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-crashlytics.plist.gpg \
82+
# quickstart-ios/crashlytics/GoogleService-Info.plist "$plist_secret"
83+
# - name: Build swift quickstart
84+
# run: |
85+
# mkdir quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics
86+
# # Set the deployed pod location of run and upload-symbols with the development pod version.
87+
# cp Crashlytics/run quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/
88+
# cp Crashlytics/upload-symbols quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/
89+
# ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_ftl.sh Crashlytics swift)
90+
# env:
91+
# LEGACY: true
92+
# - id: ftl_test
93+
# uses: FirebaseExtended/github-actions/[email protected]
94+
# with:
95+
# credentials_json: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_CREDENTIALS }}
96+
# testapp_dir: quickstart-ios/build-for-testing
97+
# test_type: "xctest"
10098

101-
crashlytics-cron-only:
102-
# Don't run on private repo.
103-
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
99+
# crashlytics-cron-only:
100+
# # Don't run on private repo.
101+
# if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
104102

105-
runs-on: macos-15
106-
strategy:
107-
matrix:
108-
# Disable watchos because it does not support XCTest.
109-
target: [ios, tvos, macos, watchos --skip-tests]
110-
flags: [
111-
'--use-static-frameworks',
112-
'--use-modular-headers --skip-tests'
113-
]
114-
needs: pod_lib_lint
115-
steps:
116-
- uses: actions/checkout@v4
117-
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
118-
- name: Setup Bundler
119-
run: scripts/setup_bundler.sh
120-
- name: Xcode
121-
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
122-
- uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
123-
with:
124-
timeout_minutes: 15
125-
max_attempts: 3
126-
retry_wait_seconds: 120
127-
command: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseCrashlytics.podspec --platforms=${{ matrix.target }} ${{ matrix.flags }}
103+
# runs-on: macos-15
104+
# strategy:
105+
# matrix:
106+
# # Disable watchos because it does not support XCTest.
107+
# target: [ios, tvos, macos, watchos --skip-tests]
108+
# flags: [
109+
# '--use-static-frameworks',
110+
# '--use-modular-headers --skip-tests'
111+
# ]
112+
# needs: pod_lib_lint
113+
# steps:
114+
# - uses: actions/checkout@v4
115+
# - uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
116+
# - name: Setup Bundler
117+
# run: scripts/setup_bundler.sh
118+
# - name: Xcode
119+
# run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
120+
# - uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
121+
# with:
122+
# timeout_minutes: 15
123+
# max_attempts: 3
124+
# retry_wait_seconds: 120
125+
# command: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseCrashlytics.podspec --platforms=${{ matrix.target }} ${{ matrix.flags }}

.github/workflows/inappmessaging.yml

Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -22,67 +22,67 @@ concurrency:
2222
cancel-in-progress: true
2323

2424
jobs:
25-
spm:
26-
uses: ./.github/workflows/common.yml
27-
with:
28-
target: FirebaseInAppMessaging-Beta
29-
platforms: iOS
30-
buildonly_platforms: iOS
25+
# spm:
26+
# uses: ./.github/workflows/common.yml
27+
# with:
28+
# target: FirebaseInAppMessaging-Beta
29+
# platforms: iOS
30+
# buildonly_platforms: iOS
3131

32-
pod_lib_lint:
33-
uses: ./.github/workflows/common_cocoapods.yml
34-
with:
35-
product: FirebaseInAppMessaging
36-
platforms: iOS, tvOS
32+
# pod_lib_lint:
33+
# uses: ./.github/workflows/common_cocoapods.yml
34+
# with:
35+
# product: FirebaseInAppMessaging
36+
# platforms: iOS, tvOS
3737

38-
tests:
39-
# Don't run on private repo unless it is a PR.
40-
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
38+
# tests:
39+
# # Don't run on private repo unless it is a PR.
40+
# if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
4141

42-
# TODO(#12770): Update to macos-14 when tests are updated for Xcode 15.
43-
runs-on: macos-15
44-
strategy:
45-
matrix:
46-
# TODO(#8682): Reenable iPad after fixing Xcode 13 test failures.
47-
# platform: [iOS, iPad]
48-
platform: [iOS]
49-
xcode: [Xcode_16.4]
50-
steps:
51-
- uses: actions/checkout@v4
52-
- uses: mikehardy/buildcache-action@c87cea0ccd718971d6cc39e672c4f26815b6c126
53-
with:
54-
cache_key: ${{ matrix.platform }}
55-
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
56-
- name: Setup Bundler
57-
run: scripts/setup_bundler.sh
58-
- name: Xcode
59-
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
60-
- name: Prereqs
61-
run: scripts/install_prereqs.sh InAppMessaging ${{ matrix.platform }} xcodebuild
62-
- name: Build and test
63-
run: scripts/third_party/travis/retry.sh scripts/build.sh InAppMessaging ${{ matrix.platform }} xcodebuild
42+
# # TODO(#12770): Update to macos-14 when tests are updated for Xcode 15.
43+
# runs-on: macos-15
44+
# strategy:
45+
# matrix:
46+
# # TODO(#8682): Reenable iPad after fixing Xcode 13 test failures.
47+
# # platform: [iOS, iPad]
48+
# platform: [iOS]
49+
# xcode: [Xcode_16.4]
50+
# steps:
51+
# - uses: actions/checkout@v4
52+
# - uses: mikehardy/buildcache-action@c87cea0ccd718971d6cc39e672c4f26815b6c126
53+
# with:
54+
# cache_key: ${{ matrix.platform }}
55+
# - uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
56+
# - name: Setup Bundler
57+
# run: scripts/setup_bundler.sh
58+
# - name: Xcode
59+
# run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
60+
# - name: Prereqs
61+
# run: scripts/install_prereqs.sh InAppMessaging ${{ matrix.platform }} xcodebuild
62+
# - name: Build and test
63+
# run: scripts/third_party/travis/retry.sh scripts/build.sh InAppMessaging ${{ matrix.platform }} xcodebuild
6464

65-
fiam-cron-only:
66-
# Don't run on private repo.
67-
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
65+
# fiam-cron-only:
66+
# # Don't run on private repo.
67+
# if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
6868

69-
runs-on: macos-15
70-
strategy:
71-
matrix:
72-
flags: [
73-
'--use-static-frameworks'
74-
]
75-
platform: [ios, tvos]
76-
needs: pod_lib_lint
77-
steps:
78-
- uses: actions/checkout@v4
79-
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
80-
- name: Xcode
81-
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
82-
- name: Setup Bundler
83-
run: scripts/setup_bundler.sh
84-
- name: PodLibLint InAppMessaging Cron
85-
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseInAppMessaging.podspec --platforms=${{ matrix.platform }} ${{ matrix.flags }}
69+
# runs-on: macos-15
70+
# strategy:
71+
# matrix:
72+
# flags: [
73+
# '--use-static-frameworks'
74+
# ]
75+
# platform: [ios, tvos]
76+
# needs: pod_lib_lint
77+
# steps:
78+
# - uses: actions/checkout@v4
79+
# - uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
80+
# - name: Xcode
81+
# run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
82+
# - name: Setup Bundler
83+
# run: scripts/setup_bundler.sh
84+
# - name: PodLibLint InAppMessaging Cron
85+
# run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseInAppMessaging.podspec --platforms=${{ matrix.platform }} ${{ matrix.flags }}
8686

8787
quickstart:
8888
uses: ./.github/workflows/common_quickstart.yml

0 commit comments

Comments
 (0)