Skip to content

Commit 9d19295

Browse files
authored
Merge pull request #1760 from firebase/nc/remove-objc-qs
feat: Remove ObjC quickstarts
2 parents ef1c911 + 0467125 commit 9d19295

File tree

239 files changed

+35
-19721
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+35
-19721
lines changed

.github/workflows/abtesting.yml

Lines changed: 3 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ permissions:
55

66
on:
77
push:
8-
branches: [ main ]
8+
# TODO: Before merging into main, remove nc/quickstarts from all workflows.
9+
branches: [ main, nc/quickstarts ]
910
paths:
1011
- '.github/workflows/abtesting.yml'
1112
- 'abtesting/**'
@@ -14,7 +15,7 @@ on:
1415
- '!abtesting/*.md'
1516
- '!abtesting/Design/**'
1617
pull_request:
17-
branches: [ main ]
18+
branches: [ main, nc/quickstarts ]
1819
paths:
1920
- '.github/workflows/abtesting.yml'
2021
- 'abtesting/**'
@@ -34,32 +35,6 @@ env:
3435
SAMPLE: ABTesting
3536

3637
jobs:
37-
cocoapods:
38-
runs-on: macOS-15
39-
env:
40-
SPM: false
41-
TEST: true
42-
steps:
43-
- name: Checkout
44-
uses: actions/checkout@master
45-
- name: Xcode
46-
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
47-
- name: Setup
48-
run: |
49-
cd abtesting/LegacyABTestingQuickstart
50-
gem install bundler
51-
bundle install
52-
gem install xcpretty
53-
bundle exec pod install --repo-update
54-
cd ..
55-
../scripts/install_prereqs/abtesting.sh
56-
- name: Build Swift
57-
run: ./scripts/test.sh
58-
env:
59-
LEGACY: true
60-
SWIFT_SUFFIX: ""
61-
OS: iOS
62-
DEVICE: iPhone 16
6338
spm:
6439
name: spm (Xcode ${{ matrix.xcode }} - ${{ matrix.os }})
6540
runs-on: macOS-15

.github/workflows/analytics.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ permissions:
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [ main, nc/quickstarts ]
99
paths:
1010
- '.github/workflows/analytics.yml'
1111
- 'analytics/**'
1212
- 'scripts/*'
1313
- 'scripts/analytics.sh'
1414
pull_request:
15-
branches: [ main ]
15+
branches: [ main, nc/quickstarts ]
1616
paths:
1717
- '.github/workflows/analytics.yml'
1818
- 'analytics/**'
@@ -58,7 +58,6 @@ jobs:
5858

5959
env:
6060
SPM: true
61-
LEGACY: false
6261
OS: ${{ matrix.os }}
6362
DEVICE: ${{ matrix.device }}
6463
SCHEME: ${{ matrix.scheme || 'AnalyticsExample' }}

.github/workflows/authentication.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ permissions:
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [ main, nc/quickstarts ]
99
paths:
1010
- '.github/workflows/authentication.yml'
1111
- 'authentication/**'
1212
- 'scripts/*'
1313
- 'scripts/authentication.sh'
1414
pull_request:
15-
branches: [ main ]
15+
branches: [ main, nc/quickstarts ]
1616
paths:
1717
- '.github/workflows/authentication.yml'
1818
- 'authentication/**'
@@ -36,7 +36,6 @@ jobs:
3636
OS: iOS
3737
SETUP: authentication
3838
SPM: true
39-
LEGACY: false
4039
DIR: authentication
4140
DEVICE: iPhone 16
4241
TEST: false

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66
on:
77
pull_request:
88
push:
9-
branches: main
9+
branches: main, nc/quickstarts
1010

1111
concurrency:
1212
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}

.github/workflows/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ permissions:
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [ main, nc/quickstarts ]
99
paths:
1010
- '.github/workflows/config.yml'
1111
- 'config/**'
1212
- 'scripts/*'
1313
- 'scripts/config.sh'
1414
pull_request:
15-
branches: [ main ]
15+
branches: [ main, nc/quickstarts ]
1616
paths:
1717
- '.github/workflows/config.yml'
1818
- 'config/**'
@@ -37,7 +37,6 @@ jobs:
3737
DEVICE: iPhone 16
3838
DIR: config
3939
SPM: true
40-
LEGACY: false
4140
SCHEME: ConfigExample
4241
TEST: true
4342
steps:

.github/workflows/crashlytics.yml

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ permissions:
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [ main, nc/quickstarts ]
99
paths:
1010
- '.github/workflows/crashlytics.yml'
1111
- 'crashlytics/**'
1212
- 'scripts/*'
1313
- 'scripts/crashlytics.sh'
1414
pull_request:
15-
branches: [ main ]
15+
branches: [ main, nc/quickstarts ]
1616
paths:
1717
- '.github/workflows/crashlytics.yml'
1818
- 'crashlytics/**'
@@ -30,30 +30,6 @@ env:
3030
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }}
3131

3232
jobs:
33-
cocoapods:
34-
runs-on: macOS-15
35-
env:
36-
SPM: false
37-
LEGACY: true
38-
OS: iOS
39-
DEVICE: iPhone 16
40-
TEST: true
41-
steps:
42-
- name: Checkout
43-
uses: actions/checkout@master
44-
- name: Setup
45-
run: |
46-
cd crashlytics/LegacyCrashlyticsQuickstart
47-
gem install bundler
48-
bundle install
49-
gem install xcpretty
50-
bundle exec pod install --repo-update
51-
cd ..
52-
../scripts/install_prereqs/crashlytics.sh
53-
- name: Build Swift
54-
run: ./scripts/test.sh
55-
env:
56-
SWIFT_SUFFIX: Swift
5733
spm:
5834
name: spm (Xcode ${{ matrix.xcode }} - ${{ matrix.os }})
5935
runs-on: macOS-15

.github/workflows/database.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ permissions:
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [ main, nc/quickstarts ]
99
paths:
1010
- '.github/workflows/database.yml'
1111
- 'database/**'
1212
- 'scripts/*'
1313
- 'scripts/database.sh'
1414
pull_request:
15-
branches: [ main ]
15+
branches: [ main, nc/quickstarts ]
1616
paths:
1717
- '.github/workflows/database.yml'
1818
- 'database/**'
@@ -36,7 +36,6 @@ jobs:
3636
env:
3737
OS: iOS
3838
SPM: true
39-
LEGACY: false
4039
DIR: database
4140
DEVICE: iPhone 16
4241
TEST: false

.github/workflows/firestore.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ permissions:
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [ main, nc/quickstarts ]
99
paths:
1010
- '.github/workflows/firestore.yml'
1111
- 'firestore/**'
1212
- 'scripts/*'
1313
- 'scripts/firestore.sh'
1414
pull_request:
15-
branches: [ main ]
15+
branches: [ main, nc/quickstarts ]
1616
paths:
1717
- '.github/workflows/firestore.yml'
1818
- 'firestore/**'
@@ -34,7 +34,6 @@ jobs:
3434
runs-on: macOS-15
3535
env:
3636
SPM: true
37-
LEGACY: false
3837
OS: iOS
3938
DIR: firestore
4039
DEVICE: iPhone 16

.github/workflows/functions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ permissions:
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [ main, nc/quickstarts ]
99
paths:
1010
- '.github/workflows/functions.yml'
1111
- 'functions/**'
1212
- 'scripts/*'
1313
- 'scripts/functions.sh'
1414
pull_request:
15-
branches: [ main ]
15+
branches: [ main, nc/quickstarts ]
1616
paths:
1717
- '.github/workflows/functions.yml'
1818
- 'functions/**'

.github/workflows/inappmessaging.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ permissions:
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [ main, nc/quickstarts ]
99
paths:
1010
- '.github/workflows/inappmessaging.yml'
1111
- 'inappmessaging/**'
1212
- 'scripts/*'
1313
- 'scripts/inappmessaging.sh'
1414
pull_request:
15-
branches: [ main ]
15+
branches: [ main, nc/quickstarts ]
1616
paths:
1717
- '.github/workflows/inappmessaging.yml'
1818
- 'inappmessaging/**'
@@ -34,7 +34,6 @@ jobs:
3434
runs-on: macOS-15
3535
env:
3636
SPM: true
37-
LEGACY: false
3837
DIR: inappmessaging
3938
OS: iOS
4039
DEVICE: iPhone 16

0 commit comments

Comments
 (0)