File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,10 @@ jobs:
130
130
key : ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
131
131
restore-keys : ${{ runner.os }}-mint-
132
132
133
+ - uses : actions/setup-python@v4
134
+ with :
135
+ python-version : ' 3.7'
136
+
133
137
- name : Setup build
134
138
run : scripts/install_prereqs.sh Firestore ${{ runner.os }} cmake
135
139
@@ -176,6 +180,10 @@ jobs:
176
180
key : ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
177
181
restore-keys : ${{ runner.os }}-mint-
178
182
183
+ - uses : actions/setup-python@v4
184
+ with :
185
+ python-version : ' 3.7'
186
+
179
187
- name : Install Secret GoogleService-Info.plist
180
188
run : scripts/decrypt_gha_secret.sh scripts/gha-encrypted/firestore.plist.gpg \
181
189
Firestore/Example/App/GoogleService-Info.plist "$plist_secret"
@@ -252,6 +260,10 @@ jobs:
252
260
restore-keys : |
253
261
${{ matrix.sanitizer }}-firestore-ccache-${{ runner.os }}-
254
262
263
+ - uses : actions/setup-python@v4
264
+ with :
265
+ python-version : ' 3.7'
266
+
255
267
- name : Setup build
256
268
run : scripts/install_prereqs.sh Firestore ${{ runner.os }} cmake
257
269
Original file line number Diff line number Diff line change @@ -20,13 +20,14 @@ endif()
20
20
file (
21
21
GLOB sources
22
22
${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
24
24
${FIREBASE_EXTERNAL_SOURCE_DIR} /GoogleUtilities/GoogleUtilities/Logger/*.m
25
25
)
26
26
file (
27
27
GLOB headers
28
28
${FIREBASE_EXTERNAL_SOURCE_DIR} /GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/*.h
29
29
${FIREBASE_EXTERNAL_SOURCE_DIR} /GoogleUtilities/GoogleUtilities/Logger/Public/GoogleUtilities/*.h
30
+ ${FIREBASE_EXTERNAL_SOURCE_DIR} /GoogleUtilities/third_party/IsAppEncrypted/Public/*.h
30
31
)
31
32
32
33
firebase_ios_add_framework (
You can’t perform that action at this time.
0 commit comments