Skip to content

Commit 473733f

Browse files
authored
[Infra] Remove FDL qs from [pre]release.yml (#14977)
1 parent 3b3ea4f commit 473733f

File tree

3 files changed

+0
-145
lines changed

3 files changed

+0
-145
lines changed

.github/workflows/prerelease.yml

Lines changed: 0 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -363,49 +363,6 @@ jobs:
363363
name: quickstart_artifacts_database
364364
path: quickstart-ios/
365365

366-
dynamiclinks_quickstart:
367-
# Don't run on private repo unless it is a PR.
368-
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'workflow_dispatch'
369-
needs: buildup_SpecsTesting_repo
370-
env:
371-
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
372-
signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
373-
bot_token_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
374-
testing_repo_dir: "/tmp/test/"
375-
testing_repo: "firebase-ios-sdk"
376-
runs-on: macos-15
377-
steps:
378-
- uses: actions/checkout@v4
379-
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
380-
- name: Get token
381-
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/prerelease-testing-token.txt.gpg \
382-
bot-access.txt "$bot_token_secret"
383-
- name: Setup testing repo and quickstart
384-
run: |
385-
botaccess=`cat bot-access.txt`
386-
BOT_TOKEN="${botaccess}" scripts/setup_quickstart.sh dynamiclinks prerelease_testing
387-
- name: Install Secret GoogleService-Info.plist
388-
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-dynamiclinks.plist.gpg \
389-
quickstart-ios/dynamiclinks/GoogleService-Info.plist "$plist_secret"
390-
- name: Update Environment Variable For DynamicLinks
391-
run: |
392-
sed -i '' 's#DYNAMIC_LINK_DOMAIN#https://qpf6m.app.goo.gl#' quickstart-ios/dynamiclinks/DynamicLinksExample/DynamicLinksExample.entitlements
393-
sed -i '' 's#YOUR_DOMAIN_URI_PREFIX";#https://qpf6m.app.goo.gl";#' quickstart-ios/dynamiclinks/DynamicLinksExample/ViewController.m
394-
sed -i '' 's#YOUR_DOMAIN_URI_PREFIX";#https://qpf6m.app.goo.gl";#' quickstart-ios/dynamiclinks/DynamicLinksExampleSwift/ViewController.swift
395-
- name: Test objc quickstart
396-
run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh DynamicLinks false)
397-
- name: Test swift quickstart
398-
if: ${{ always() }}
399-
run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh DynamicLinks false swift)
400-
- name: Remove data before upload
401-
if: ${{ failure() }}
402-
run: scripts/remove_data.sh dynamiclinks
403-
- uses: actions/upload-artifact@v4
404-
if: ${{ failure() }}
405-
with:
406-
name: quickstart_artifacts_dynamiclinks
407-
path: quickstart-ios/
408-
409366
firestore_quickstart:
410367
# Don't run on private repo unless it is a PR.
411368
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'workflow_dispatch'

.github/workflows/release.yml

Lines changed: 0 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -308,49 +308,6 @@ jobs:
308308
name: quickstart_artifacts_database
309309
path: quickstart-ios/
310310

311-
dynamiclinks_quickstart:
312-
# Don't run on private repo unless it is a PR.
313-
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
314-
needs: buildup_SpecsReleasing_repo
315-
env:
316-
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
317-
signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
318-
bot_token_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
319-
testing_repo_dir: "/tmp/test/"
320-
testing_repo: "firebase-ios-sdk"
321-
runs-on: macos-14
322-
steps:
323-
- uses: actions/checkout@v4
324-
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
325-
- name: Get token
326-
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/release-testing-token.txt.gpg \
327-
bot-access.txt "$bot_token_secret"
328-
- name: Setup testing repo and quickstart
329-
run: |
330-
botaccess=`cat bot-access.txt`
331-
BOT_TOKEN="${botaccess}" scripts/setup_quickstart.sh dynamiclinks nightly_release_testing
332-
- name: Install Secret GoogleService-Info.plist
333-
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-dynamiclinks.plist.gpg \
334-
quickstart-ios/dynamiclinks/GoogleService-Info.plist "$plist_secret"
335-
- name: Update Environment Variable For DynamicLinks
336-
run: |
337-
sed -i '' 's#DYNAMIC_LINK_DOMAIN#https://qpf6m.app.goo.gl#' quickstart-ios/dynamiclinks/DynamicLinksExample/DynamicLinksExample.entitlements
338-
sed -i '' 's#YOUR_DOMAIN_URI_PREFIX";#https://qpf6m.app.goo.gl";#' quickstart-ios/dynamiclinks/DynamicLinksExample/ViewController.m
339-
sed -i '' 's#YOUR_DOMAIN_URI_PREFIX";#https://qpf6m.app.goo.gl";#' quickstart-ios/dynamiclinks/DynamicLinksExampleSwift/ViewController.swift
340-
- name: Test objc quickstart
341-
run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh DynamicLinks true)
342-
- name: Test swift quickstart
343-
if: ${{ always() }}
344-
run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh DynamicLinks true swift)
345-
- name: Remove data before upload
346-
if: ${{ failure() }}
347-
run: scripts/remove_data.sh dynamiclinks
348-
- uses: actions/upload-artifact@v4
349-
if: ${{ failure() }}
350-
with:
351-
name: quickstart_artifacts_dynamiclinks
352-
path: quickstart-ios/
353-
354311
firestore_quickstart:
355312
# Don't run on private repo unless it is a PR.
356313
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'

.github/workflows/zip.yml

Lines changed: 0 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -391,65 +391,6 @@ jobs:
391391
name: quickstart_artifacts database
392392
path: quickstart-ios/
393393

394-
quickstart_framework_dynamiclinks:
395-
# Don't run on private repo.
396-
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
397-
needs: package-head
398-
env:
399-
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
400-
signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
401-
SDK: "DynamicLinks"
402-
strategy:
403-
matrix:
404-
artifact: [Firebase-actions-dir, Firebase-actions-dir-dynamic]
405-
build-env:
406-
- os: macos-15
407-
xcode: Xcode_16.2
408-
# - os: macos-15
409-
# xcode: Xcode_16.3
410-
runs-on: ${{ matrix.build-env.os }}
411-
steps:
412-
- uses: actions/checkout@v4
413-
- name: Get framework dir
414-
uses: actions/[email protected]
415-
with:
416-
name: ${{ matrix.artifact }}
417-
- uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
418-
- name: Setup Bundler
419-
run: ./scripts/setup_bundler.sh
420-
- name: Move frameworks
421-
run: |
422-
mkdir -p "${HOME}"/ios_frameworks/
423-
find "${GITHUB_WORKSPACE}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
424-
- name: Setup Objc Quickstart
425-
run: SAMPLE="$SDK" TARGET="${SDK}Example" scripts/setup_quickstart_framework.sh \
426-
"${HOME}"/ios_frameworks/Firebase/FirebaseDynamicLinks/* \
427-
"${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/*
428-
- name: Xcode
429-
run: sudo xcode-select -s /Applications/${{ matrix.build-env.xcode }}.app/Contents/Developer
430-
- name: Setup Swift Quickstart
431-
run: SAMPLE="$SDK" TARGET="${SDK}ExampleSwift" scripts/setup_quickstart_framework.sh
432-
- name: Update Environment Variable For DynamicLinks
433-
run: |
434-
sed -i '' 's#DYNAMIC_LINK_DOMAIN#https://qpf6m.app.goo.gl#' quickstart-ios/dynamiclinks/DynamicLinksExample/DynamicLinksExample.entitlements
435-
sed -i '' 's#YOUR_DOMAIN_URI_PREFIX";#https://qpf6m.app.goo.gl";#' quickstart-ios/dynamiclinks/DynamicLinksExample/ViewController.m
436-
sed -i '' 's#YOUR_DOMAIN_URI_PREFIX";#https://qpf6m.app.goo.gl";#' quickstart-ios/dynamiclinks/DynamicLinksExampleSwift/ViewController.swift
437-
- name: Install Secret GoogleService-Info.plist
438-
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-dynamiclinks.plist.gpg \
439-
quickstart-ios/dynamiclinks/GoogleService-Info.plist "$plist_secret"
440-
- name: Test Objc Quickstart
441-
run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
442-
- name: Test Swift Quickstart
443-
run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}" swift)
444-
- name: Remove data before upload
445-
if: ${{ failure() }}
446-
run: scripts/remove_data.sh dynamiclinks
447-
- uses: actions/upload-artifact@v4
448-
if: ${{ failure() }}
449-
with:
450-
name: quickstart_artifacts_dynamiclinks
451-
path: quickstart-ios/
452-
453394
quickstart_framework_firestore:
454395
# Don't run on private repo.
455396
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'

0 commit comments

Comments
 (0)