Skip to content

Commit ca1291e

Browse files
authored
CI work
1 parent 4671342 commit ca1291e

File tree

3 files changed

+63
-61
lines changed

3 files changed

+63
-61
lines changed

.github/workflows/_spm.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,10 @@ jobs:
9797
strategy:
9898
fail-fast: false
9999
matrix:
100-
os: [macos-15, macos-26]
101-
xcode: [Xcode_16.4, Xcode_26.2]
100+
# os: [macos-15, macos-26]
101+
os: [macos-26]
102+
# xcode: [Xcode_16.4, Xcode_26.2]
103+
xcode: [Xcode_26.4_beta_2]
102104
platform: [iOS, tvOS, macOS, watchOS, catalyst, visionOS]
103105
exclude:
104106
- os: macos-15

.github/workflows/sdk.auth.yml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -29,45 +29,45 @@ concurrency:
2929
cancel-in-progress: true
3030

3131
jobs:
32-
spm:
33-
uses: ./.github/workflows/_spm.yml
34-
with:
35-
target: AuthUnit
36-
buildonly_platforms: macOS
32+
# spm:
33+
# uses: ./.github/workflows/_spm.yml
34+
# with:
35+
# target: AuthUnit
36+
# buildonly_platforms: macOS
3737

38-
catalyst:
39-
uses: ./.github/workflows/_catalyst.yml
40-
with:
41-
product: FirebaseAuth
42-
target: FirebaseAuth-Unit-unit
43-
buildonly: true
38+
# catalyst:
39+
# uses: ./.github/workflows/_catalyst.yml
40+
# with:
41+
# product: FirebaseAuth
42+
# target: FirebaseAuth-Unit-unit
43+
# buildonly: true
4444

45-
pod_lib_lint:
46-
strategy:
47-
matrix:
48-
product: [FirebaseAuthInterop, FirebaseAuth]
49-
uses: ./.github/workflows/_cocoapods.yml
50-
with:
51-
product: ${{ matrix.product }}
52-
buildonly_platforms: macOS
45+
# pod_lib_lint:
46+
# strategy:
47+
# matrix:
48+
# product: [FirebaseAuthInterop, FirebaseAuth]
49+
# uses: ./.github/workflows/_cocoapods.yml
50+
# with:
51+
# product: ${{ matrix.product }}
52+
# buildonly_platforms: macOS
5353

5454
integration-tests:
5555
# Don't run on private repo unless it is a PR.
5656
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false)
57-
needs: spm
57+
# needs: spm
5858
strategy:
5959
matrix:
6060
scheme: [ObjCApiTests, SwiftApiTests, AuthenticationExampleUITests]
6161
env:
6262
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
6363
FIREBASECI_USE_LATEST_GOOGLEAPPMEASUREMENT: 1
64-
runs-on: macos-15
64+
runs-on: macos-26
6565
steps:
6666
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
67-
- uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
68-
with:
69-
path: .build
70-
key: ${{ needs.spm.outputs.cache_key }}
67+
# - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
68+
# with:
69+
# path: .build
70+
# key: ${{ needs.spm.outputs.cache_key }}
7171
- name: Install Secrets
7272
run: |
7373
scripts/decrypt_gha_secret.sh scripts/gha-encrypted/AuthCredentials.h.gpg \
@@ -85,7 +85,7 @@ jobs:
8585
scripts/decrypt_gha_secret.sh scripts/gha-encrypted/AuthSample/Credentials.swift.gpg \
8686
FirebaseAuth/Tests/SampleSwift/SwiftApiTests/Credentials.swift "$plist_secret"
8787
- name: Xcode
88-
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
88+
run: sudo xcode-select -s /Applications/Xcode_26.4_beta_2.app/Contents/Developer
8989
- name: Install simulators in case they are missing.
9090
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
9191
with:
@@ -107,19 +107,19 @@ jobs:
107107
setup_command: scripts/setup_quickstart.sh authentication
108108
plist_src_path: scripts/gha-encrypted/qs-authentication.plist.gpg
109109
plist_dst_path: quickstart-ios/authentication/GoogleService-Info.plist
110-
run_tests: false
110+
run_tests: true
111111
secrets:
112112
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
113113

114-
auth-cron-only:
115-
if: github.event.pull_request.head.repo.fork == false
116-
needs: pod_lib_lint
117-
uses: ./.github/workflows/_cocoapods.cron.yml
118-
with:
119-
product: FirebaseAuth
120-
ignore_deprecation_warnings: true
121-
platforms: '[ "ios", "tvos --skip-tests", "macos --skip-tests", "watchos --skip-tests" ]'
122-
flags: '[ "--use-static-frameworks" ]'
123-
setup_command: scripts/configure_test_keychain.sh
124-
secrets:
125-
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
114+
# auth-cron-only:
115+
# if: github.event.pull_request.head.repo.fork == false
116+
# needs: pod_lib_lint
117+
# uses: ./.github/workflows/_cocoapods.cron.yml
118+
# with:
119+
# product: FirebaseAuth
120+
# ignore_deprecation_warnings: true
121+
# platforms: '[ "ios", "tvos --skip-tests", "macos --skip-tests", "watchos --skip-tests" ]'
122+
# flags: '[ "--use-static-frameworks" ]'
123+
# setup_command: scripts/configure_test_keychain.sh
124+
# secrets:
125+
# plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}

.github/workflows/sdk.functions.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ concurrency:
2929
cancel-in-progress: true
3030

3131
jobs:
32-
pod_lib_lint:
33-
uses: ./.github/workflows/_cocoapods.yml
34-
with:
35-
product: FirebaseFunctions
36-
supports_swift6: true
37-
setup_command: FirebaseFunctions/Backend/start.sh synchronous
32+
# pod_lib_lint:
33+
# uses: ./.github/workflows/_cocoapods.yml
34+
# with:
35+
# product: FirebaseFunctions
36+
# supports_swift6: true
37+
# setup_command: FirebaseFunctions/Backend/start.sh synchronous
3838

3939
spm-integration:
4040
uses: ./.github/workflows/_spm.yml
@@ -46,20 +46,20 @@ jobs:
4646
platforms: iOS
4747
setup_command: FirebaseFunctions/Backend/start.sh synchronous
4848

49-
spm-unit:
50-
uses: ./.github/workflows/_spm.yml
51-
with:
52-
target: FirebaseFunctionsUnit
49+
# spm-unit:
50+
# uses: ./.github/workflows/_spm.yml
51+
# with:
52+
# target: FirebaseFunctionsUnit
5353

5454
# TODO(ncooke3): Add a Functions quickstart test.
5555

56-
functions-cron-only:
57-
needs: pod_lib_lint
58-
uses: ./.github/workflows/_cocoapods.cron.yml
59-
with:
60-
product: FirebaseFunctions
61-
platforms: '[ "ios", "tvos", "macos" ]'
62-
flags: '[ "--use-static-frameworks" ]'
63-
setup_command: FirebaseFunctions/Backend/start.sh synchronous
64-
runs_on: macos-15
65-
xcode: Xcode_16.4
56+
# functions-cron-only:
57+
# needs: pod_lib_lint
58+
# uses: ./.github/workflows/_cocoapods.cron.yml
59+
# with:
60+
# product: FirebaseFunctions
61+
# platforms: '[ "ios", "tvos", "macos" ]'
62+
# flags: '[ "--use-static-frameworks" ]'
63+
# setup_command: FirebaseFunctions/Backend/start.sh synchronous
64+
# runs_on: macos-15
65+
# xcode: Xcode_16.4

0 commit comments

Comments
 (0)