Skip to content

Commit d938383

Browse files
authored
GHA on macOS 11 (#8543)
1 parent 7b87803 commit d938383

34 files changed

+192
-192
lines changed

.github/workflows/abtesting.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# Don't run on private repo unless it is a PR.
1717
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
1818

19-
runs-on: macOS-latest
19+
runs-on: macos-11
2020
strategy:
2121
matrix:
2222
target: [ios, tvos, macos, watchos]
@@ -32,7 +32,7 @@ jobs:
3232
spm:
3333
# Don't run on private repo unless it is a PR.
3434
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
35-
runs-on: macOS-latest
35+
runs-on: macos-11
3636
steps:
3737
- uses: actions/checkout@v2
3838
- name: Initialize xcodebuild
@@ -43,7 +43,7 @@ jobs:
4343
spm-cron:
4444
# Don't run on private repo.
4545
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
46-
runs-on: macOS-latest
46+
runs-on: macos-11
4747
strategy:
4848
matrix:
4949
target: [tvOS, macOS, catalyst]
@@ -58,7 +58,7 @@ jobs:
5858
# Don't run on private repo unless it is a PR.
5959
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
6060

61-
runs-on: macOS-latest
61+
runs-on: macos-11
6262
steps:
6363
- uses: actions/checkout@v2
6464
- name: Setup Bundler
@@ -73,7 +73,7 @@ jobs:
7373
env:
7474
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
7575
signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
76-
runs-on: macOS-latest
76+
runs-on: macos-11
7777
steps:
7878
- uses: actions/checkout@v2
7979
- name: Setup quickstart
@@ -95,7 +95,7 @@ jobs:
9595
# Don't run on private repo.
9696
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
9797

98-
runs-on: macos-latest
98+
runs-on: macos-11
9999
strategy:
100100
matrix:
101101
target: [ios, tvos, macos]
@@ -116,7 +116,7 @@ jobs:
116116
podspec-presubmit:
117117
# Don't run on private repo unless it is a PR.
118118
if: github.repository == 'Firebase/firebase-ios-sdk' && github.event.pull_request.merged != true && github.event.action != 'closed'
119-
runs-on: macOS-latest
119+
runs-on: macos-11
120120
steps:
121121
- uses: actions/checkout@v2
122122
- name: Setup Bundler

.github/workflows/analytics.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Don't run on private repo unless it is a PR.
1818
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
1919

20-
runs-on: macOS-latest
20+
runs-on: macos-11
2121
steps:
2222
- uses: actions/checkout@v2
2323
- name: Setup Bundler
@@ -33,7 +33,7 @@ jobs:
3333
podspec-presubmit:
3434
# Don't run on private repo unless it is a PR.
3535
if: github.repository == 'Firebase/firebase-ios-sdk' && github.event.pull_request.merged != true && github.event.action != 'closed'
36-
runs-on: macOS-latest
36+
runs-on: macos-11
3737
steps:
3838
- uses: actions/checkout@v2
3939
- name: Setup Bundler

.github/workflows/app_check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
pod_lib_lint:
14-
runs-on: macOS-latest
14+
runs-on: macos-11
1515
strategy:
1616
matrix:
1717
target: [ios, tvos, macos]
@@ -27,7 +27,7 @@ jobs:
2727
catalyst:
2828
# Don't run on private repo unless it is a PR.
2929
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
30-
runs-on: macOS-latest
30+
runs-on: macos-11
3131
steps:
3232
- uses: actions/checkout@v2
3333
- name: Setup Bundler
@@ -38,7 +38,7 @@ jobs:
3838
diagnostics:
3939
# Don't run on private repo unless it is a PR.
4040
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
41-
runs-on: macOS-latest
41+
runs-on: macos-11
4242
strategy:
4343
matrix:
4444
diagnostic: [tsan, asan, ubsan]
@@ -56,7 +56,7 @@ jobs:
5656
path: xcodebuild.log
5757

5858
app_check-cron-only:
59-
runs-on: macos-latest
59+
runs-on: macos-11
6060
if: github.event_name == 'schedule'
6161
strategy:
6262
matrix:
@@ -76,7 +76,7 @@ jobs:
7676
spm:
7777
# Don't run on private repo unless it is a PR.
7878
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
79-
runs-on: macOS-latest
79+
runs-on: macos-11
8080
steps:
8181
- uses: actions/checkout@v2
8282
- name: Initialize xcodebuild
@@ -89,7 +89,7 @@ jobs:
8989
spm-cron:
9090
# Don't run on private repo.
9191
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
92-
runs-on: macOS-latest
92+
runs-on: macos-11
9393
strategy:
9494
matrix:
9595
target: [tvOS, macOS, catalyst]

.github/workflows/appdistribution.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# Don't run on private repo unless it is a PR.
1616
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
1717

18-
runs-on: macos-latest
18+
runs-on: macos-11
1919
strategy:
2020
matrix:
2121
target: [ios]
@@ -32,7 +32,7 @@ jobs:
3232
# Don't run on private repo unless it is a PR.
3333
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
3434

35-
runs-on: macOS-latest
35+
runs-on: macos-11
3636
steps:
3737
- uses: actions/checkout@v2
3838
- name: Initialize xcodebuild
@@ -44,7 +44,7 @@ jobs:
4444
# Don't run on private repo unless it is a PR.
4545
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
4646

47-
runs-on: macOS-latest
47+
runs-on: macos-11
4848
steps:
4949
- uses: actions/checkout@v2
5050
- name: Setup Bundler
@@ -55,7 +55,7 @@ jobs:
5555
appdistribution-cron-only:
5656
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
5757

58-
runs-on: macos-latest
58+
runs-on: macos-11
5959
strategy:
6060
matrix:
6161
target: [ios]

.github/workflows/archiving.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# Don't run on private repo.
1616
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule')
1717

18-
runs-on: macOS-latest
18+
runs-on: macos-11
1919
strategy:
2020
matrix:
2121
# These need to be on a single line or else the formatting won't validate.
@@ -33,7 +33,7 @@ jobs:
3333
# Don't run on private repo.
3434
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule')
3535

36-
runs-on: macOS-latest
36+
runs-on: macos-11
3737
strategy:
3838
matrix:
3939
target: [ios, tvos, macos]

.github/workflows/auth.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Don't run on private repo unless it is a PR.
1818
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
1919

20-
runs-on: macOS-latest
20+
runs-on: macos-11
2121

2222
strategy:
2323
matrix:
@@ -38,7 +38,7 @@ jobs:
3838

3939
env:
4040
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
41-
runs-on: macos-latest
41+
runs-on: macos-11
4242
steps:
4343
- uses: actions/checkout@v2
4444
- name: Setup Bundler
@@ -68,7 +68,7 @@ jobs:
6868
spm:
6969
# Don't run on private repo unless it is a PR.
7070
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
71-
runs-on: macOS-latest
71+
runs-on: macos-11
7272
strategy:
7373
matrix:
7474
target: [iOS, tvOS, macOS, catalyst]
@@ -83,7 +83,7 @@ jobs:
8383
# Don't run on private repo unless it is a PR.
8484
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
8585

86-
runs-on: macOS-latest
86+
runs-on: macos-11
8787
steps:
8888
- uses: actions/checkout@v2
8989
- name: Setup Bundler
@@ -99,7 +99,7 @@ jobs:
9999
env:
100100
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
101101
signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
102-
runs-on: macOS-latest
102+
runs-on: macos-11
103103
steps:
104104
- uses: actions/checkout@v2
105105
- name: Setup quickstart
@@ -117,7 +117,7 @@ jobs:
117117
# Don't run on private repo.
118118
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
119119

120-
runs-on: macos-latest
120+
runs-on: macos-11
121121
strategy:
122122
matrix:
123123
# The macos and tvos tests can hang, and watchOS doesn't have tests.
@@ -139,7 +139,7 @@ jobs:
139139
podspec-presubmit:
140140
# Don't run on private repo unless it is a PR.
141141
if: github.repository == 'Firebase/firebase-ios-sdk' && github.event.pull_request.merged != true && github.event.action != 'closed'
142-
runs-on: macOS-latest
142+
runs-on: macos-11
143143
steps:
144144
- uses: actions/checkout@v2
145145
- name: Setup Bundler

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
check:
12-
runs-on: macos-latest
12+
runs-on: macos-11
1313
env:
1414
MINT_PATH: ${{ github.workspace }}/mint
1515
steps:

.github/workflows/cocoapods-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# Don't run on private repo unless it is a PR.
1616
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
1717

18-
runs-on: macOS-latest
18+
runs-on: macos-11
1919
strategy:
2020
matrix:
2121
config: [Cocoapods_multiprojects_frameworks, Cocoapods_multiprojects_staticLibs]

.github/workflows/combine.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
xcodebuild:
3838
# Don't run on private repo unless it is a PR.
3939
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
40-
runs-on: macos-latest
40+
runs-on: macos-11
4141

4242
strategy:
4343
matrix:
@@ -57,7 +57,7 @@ jobs:
5757
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
5858
env:
5959
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
60-
runs-on: macos-latest
60+
runs-on: macos-11
6161
steps:
6262
- uses: actions/checkout@v2
6363
- name: Setup Bundler

.github/workflows/core-diagnostics.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Don't run on private repo unless it is a PR.
1818
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
1919

20-
runs-on: macOS-latest
20+
runs-on: macos-11
2121

2222
strategy:
2323
matrix:
@@ -32,7 +32,7 @@ jobs:
3232
spm:
3333
# Don't run on private repo unless it is a PR.
3434
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
35-
runs-on: macOS-latest
35+
runs-on: macos-11
3636
steps:
3737
- uses: actions/checkout@v2
3838
- name: Initialize xcodebuild
@@ -44,7 +44,7 @@ jobs:
4444
# Don't run on private repo unless it is a PR.
4545
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
4646

47-
runs-on: macOS-latest
47+
runs-on: macos-11
4848
steps:
4949
- uses: actions/checkout@v2
5050
- name: Setup Bundler
@@ -56,7 +56,7 @@ jobs:
5656
# Don't run on private repo.
5757
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
5858

59-
runs-on: macos-latest
59+
runs-on: macos-11
6060
strategy:
6161
matrix:
6262
target: [ios, tvos, macos]

0 commit comments

Comments
 (0)