26
26
# 'podspec_repo_branch' of this repo will be validated and pushed to the
27
27
# testing repo.
28
28
local_sdk_repo_dir : /tmp/test/firebase-ios-sdk
29
- local_repo : specstesting
29
+ local_repo : specsreleasing
30
30
podspec_repo_branch : main
31
31
outputs :
32
32
matrix : ${{ steps.generate_matrix.outputs.matrix }}
43
43
run : |
44
44
scripts/decrypt_gha_secret.sh scripts/gha-encrypted/release-testing-token.txt.gpg \
45
45
bot-access.txt "$bot_token_secret"
46
- - name : Update SpecsTesting repo setup
46
+ - name : Update SpecsReleasing repo setup
47
47
run : |
48
48
botaccess=`cat bot-access.txt`
49
49
BOT_TOKEN="${botaccess}" test_version="${nightly_version}" \
54
54
- name : Clean spec repo
55
55
run : |
56
56
botaccess=`cat bot-access.txt`
57
- git clone --quiet https://"$botaccess"@github.com/FirebasePrivate/SpecsTesting .git "${local_repo}"
57
+ git clone --quiet https://"$botaccess"@github.com/Firebase/SpecsReleasing .git "${local_repo}"
58
58
cd "${local_repo}"
59
59
# Remove all unhidden dirs, i.e. all podspec dir from the spec repo.
60
60
rm -Rf -- */
@@ -72,14 +72,14 @@ jobs:
72
72
path : |
73
73
${{ env.local_sdk_repo_dir }}/*.podspec
74
74
${{ env.local_sdk_repo_dir }}/*.podspec.json
75
- buildup_SpecsTesting_repo_FirebaseCore :
75
+ buildup_SpecsReleasing_repo_FirebaseCore :
76
76
needs : specs_checking
77
77
# Don't run on private repo unless it is a PR.
78
78
if : github.repository == 'Firebase/firebase-ios-sdk'
79
79
runs-on : macos-14
80
80
env :
81
81
bot_token_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
82
- local_repo : specstesting
82
+ local_repo : specsreleasing
83
83
local_sdk_repo_dir : /tmp/test/firebase-ios-sdk
84
84
targeted_pod : FirebaseCore
85
85
steps :
@@ -92,25 +92,25 @@ jobs:
92
92
run : |
93
93
scripts/decrypt_gha_secret.sh scripts/gha-encrypted/release-testing-token.txt.gpg \
94
94
bot-access.txt "$bot_token_secret"
95
- - name : Update SpecsTesting repo
95
+ - name : Update SpecsReleasing repo
96
96
run : |
97
97
botaccess=`cat bot-access.txt`
98
98
cd scripts/create_spec_repo/
99
99
swift build
100
- pod repo add --silent "${local_repo}" https://"$botaccess"@github.com/FirebasePrivate/SpecsTesting .git
100
+ pod repo add --silent "${local_repo}" https://"$botaccess"@github.com/Firebase/SpecsReleasing .git
101
101
BOT_TOKEN="${botaccess}" ${GITHUB_WORKSPACE}/scripts/third_party/travis/retry.sh .build/debug/spec-repo-builder \
102
102
--sdk-repo "${local_sdk_repo_dir}" \
103
103
--local-spec-repo-name "${local_repo}" \
104
- --pod-sources 'https://${BOT_TOKEN}@ github.com/FirebasePrivate/SpecsTesting ' "https://github.com/firebase/SpecsStaging.git" "https://github.com/CocoaPods/Specs.git" \
104
+ --pod-sources 'https://github.com/Firebase/SpecsReleasing ' "https://github.com/firebase/SpecsStaging.git" "https://github.com/CocoaPods/Specs.git" \
105
105
--include-pods "${targeted_pod}" --keep-repo
106
106
- name : Clean Artifacts
107
107
if : ${{ always() }}
108
108
run : |
109
109
pod repo remove "${local_repo}"
110
110
rm -rf bot-access.txt
111
111
112
- buildup_SpecsTesting_repo :
113
- needs : [buildup_SpecsTesting_repo_FirebaseCore , specs_checking]
112
+ buildup_SpecsReleasing_repo :
113
+ needs : [buildup_SpecsReleasing_repo_FirebaseCore , specs_checking]
114
114
# Don't run on private repo unless it is a PR.
115
115
if : github.repository == 'Firebase/firebase-ios-sdk'
116
116
runs-on : macos-14
@@ -119,7 +119,7 @@ jobs:
119
119
matrix : ${{fromJson(needs.specs_checking.outputs.matrix)}}
120
120
env :
121
121
bot_token_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
122
- local_repo : specstesting
122
+ local_repo : specsreleasing
123
123
local_sdk_repo_dir : /tmp/test/firebase-ios-sdk
124
124
targeted_pod : ${{ matrix.podspec }}
125
125
steps :
@@ -132,19 +132,19 @@ jobs:
132
132
run : |
133
133
scripts/decrypt_gha_secret.sh scripts/gha-encrypted/release-testing-token.txt.gpg \
134
134
bot-access.txt "$bot_token_secret"
135
- - name : Update SpecsTesting repo
135
+ - name : Update SpecsReleasing repo
136
136
run : |
137
137
[[ ${{ matrix.allowwarnings }} == true ]] && ALLOWWARNINGS=true
138
138
botaccess=`cat bot-access.txt`
139
139
cd scripts/create_spec_repo/
140
140
swift build
141
- pod repo add --silent "${local_repo}" https://"$botaccess"@github.com/FirebasePrivate/SpecsTesting .git
141
+ pod repo add --silent "${local_repo}" https://"$botaccess"@github.com/Firebase/SpecsReleasing .git
142
142
# ${ALLOWWARNINGS:+--allow-warnings} will add --allow-warnings to the
143
143
# command if ${ALLOWWARNINGS} is not null.
144
144
BOT_TOKEN="${botaccess}" ${GITHUB_WORKSPACE}/scripts/third_party/travis/retry.sh .build/debug/spec-repo-builder \
145
145
--sdk-repo "${local_sdk_repo_dir}" \
146
146
--local-spec-repo-name "${local_repo}" \
147
- --pod-sources 'https://${BOT_TOKEN}@ github.com/FirebasePrivate/SpecsTesting ' "https://github.com/firebase/SpecsStaging.git" "https://github.com/CocoaPods/Specs.git" \
147
+ --pod-sources 'https://github.com/Firebase/SpecsReleasing ' "https://github.com/firebase/SpecsStaging.git" "https://github.com/CocoaPods/Specs.git" \
148
148
--include-pods "${targeted_pod}" \
149
149
--keep-repo ${ALLOWWARNINGS:+--allow-warnings}
150
150
- name : Clean Artifacts
@@ -156,7 +156,7 @@ jobs:
156
156
abtesting_quickstart :
157
157
# Don't run on private repo unless it is a PR.
158
158
if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
159
- needs : buildup_SpecsTesting_repo
159
+ needs : buildup_SpecsReleasing_repo
160
160
env :
161
161
plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
162
162
signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
@@ -195,7 +195,7 @@ jobs:
195
195
auth_quickstart :
196
196
# Don't run on private repo unless it is a PR.
197
197
if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
198
- needs : buildup_SpecsTesting_repo
198
+ needs : buildup_SpecsReleasing_repo
199
199
env :
200
200
plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
201
201
signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
@@ -228,7 +228,7 @@ jobs:
228
228
crashlytics_quickstart :
229
229
# Don't run on private repo unless it is a PR.
230
230
if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
231
- needs : buildup_SpecsTesting_repo
231
+ needs : buildup_SpecsReleasing_repo
232
232
env :
233
233
plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
234
234
signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
@@ -278,7 +278,7 @@ jobs:
278
278
database_quickstart :
279
279
# Don't run on private repo unless it is a PR.
280
280
if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
281
- needs : buildup_SpecsTesting_repo
281
+ needs : buildup_SpecsReleasing_repo
282
282
env :
283
283
plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
284
284
signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
@@ -315,7 +315,7 @@ jobs:
315
315
dynamiclinks_quickstart :
316
316
# Don't run on private repo unless it is a PR.
317
317
if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
318
- needs : buildup_SpecsTesting_repo
318
+ needs : buildup_SpecsReleasing_repo
319
319
env :
320
320
plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
321
321
signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
@@ -358,7 +358,7 @@ jobs:
358
358
firestore_quickstart :
359
359
# Don't run on private repo unless it is a PR.
360
360
if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
361
- needs : buildup_SpecsTesting_repo
361
+ needs : buildup_SpecsReleasing_repo
362
362
env :
363
363
plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
364
364
signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
@@ -395,7 +395,7 @@ jobs:
395
395
# functions_quickstart:
396
396
# # Don't run on private repo unless it is a PR.
397
397
# if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
398
- # needs: buildup_SpecsTesting_repo
398
+ # needs: buildup_SpecsReleasing_repo
399
399
# env:
400
400
# plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
401
401
# signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
@@ -437,7 +437,7 @@ jobs:
437
437
inappmessaging_quickstart :
438
438
# Don't run on private repo unless it is a PR.
439
439
if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
440
- needs : buildup_SpecsTesting_repo
440
+ needs : buildup_SpecsReleasing_repo
441
441
env :
442
442
plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
443
443
signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
@@ -476,7 +476,7 @@ jobs:
476
476
messaging_quickstart :
477
477
# Don't run on private repo unless it is a PR.
478
478
if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
479
- needs : buildup_SpecsTesting_repo
479
+ needs : buildup_SpecsReleasing_repo
480
480
env :
481
481
plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
482
482
signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
@@ -515,7 +515,7 @@ jobs:
515
515
remoteconfig_quickstart :
516
516
# Don't run on private repo unless it is a PR.
517
517
if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
518
- needs : buildup_SpecsTesting_repo
518
+ needs : buildup_SpecsReleasing_repo
519
519
env :
520
520
plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
521
521
signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
@@ -548,7 +548,7 @@ jobs:
548
548
storage_quickstart :
549
549
# Don't run on private repo unless it is a PR.
550
550
if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
551
- needs : buildup_SpecsTesting_repo
551
+ needs : buildup_SpecsReleasing_repo
552
552
env :
553
553
plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
554
554
signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
@@ -586,7 +586,7 @@ jobs:
586
586
performance_quickstart :
587
587
# Don't run on private repo unless it is a PR.
588
588
if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
589
- needs : buildup_SpecsTesting_repo
589
+ needs : buildup_SpecsReleasing_repo
590
590
env :
591
591
plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
592
592
signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
0 commit comments