Skip to content

Commit 0c1c1ca

Browse files
authored
Fix cmake ci (#12071)
1 parent 8329c4c commit 0c1c1ca

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/firestore.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,10 @@ jobs:
130130
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
131131
restore-keys: ${{ runner.os }}-mint-
132132

133+
- uses: actions/setup-python@v4
134+
with:
135+
python-version: '3.7'
136+
133137
- name: Setup build
134138
run: scripts/install_prereqs.sh Firestore ${{ runner.os }} cmake
135139

@@ -176,6 +180,10 @@ jobs:
176180
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
177181
restore-keys: ${{ runner.os }}-mint-
178182

183+
- uses: actions/setup-python@v4
184+
with:
185+
python-version: '3.7'
186+
179187
- name: Install Secret GoogleService-Info.plist
180188
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/firestore.plist.gpg \
181189
Firestore/Example/App/GoogleService-Info.plist "$plist_secret"
@@ -252,6 +260,10 @@ jobs:
252260
restore-keys: |
253261
${{ matrix.sanitizer }}-firestore-ccache-${{ runner.os }}-
254262
263+
- uses: actions/setup-python@v4
264+
with:
265+
python-version: '3.7'
266+
255267
- name: Setup build
256268
run: scripts/install_prereqs.sh Firestore ${{ runner.os }} cmake
257269

cmake/GoogleUtilities.cmake

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ endif()
2020
file(
2121
GLOB sources
2222
${FIREBASE_EXTERNAL_SOURCE_DIR}/GoogleUtilities/GoogleUtilities/Environment/*.m
23-
${FIREBASE_EXTERNAL_SOURCE_DIR}/GoogleUtilities/GoogleUtilities/Environment/third_party/*.m
23+
${FIREBASE_EXTERNAL_SOURCE_DIR}/GoogleUtilities/third_party/IsAppEncrypted/*.m
2424
${FIREBASE_EXTERNAL_SOURCE_DIR}/GoogleUtilities/GoogleUtilities/Logger/*.m
2525
)
2626
file(
2727
GLOB headers
2828
${FIREBASE_EXTERNAL_SOURCE_DIR}/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/*.h
2929
${FIREBASE_EXTERNAL_SOURCE_DIR}/GoogleUtilities/GoogleUtilities/Logger/Public/GoogleUtilities/*.h
30+
${FIREBASE_EXTERNAL_SOURCE_DIR}/GoogleUtilities/third_party/IsAppEncrypted/Public/*.h
3031
)
3132

3233
firebase_ios_add_framework(

0 commit comments

Comments
 (0)