Skip to content

Commit 38d860c

Browse files
authored
Merge pull request #239 from firebase/bugfix/integration-test-boringssl-windows-error
Bugfix/integration test boringssl windows error
2 parents 0a738ef + e624693 commit 38d860c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

scripts/gha/build_testapps.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,12 @@ def _summarize_results(testapps, platforms, failures, output_dir):
310310

311311

312312
def _build_desktop(sdk_dir, cmake_flags):
313-
_run(["cmake", ".", "-DFIREBASE_CPP_SDK_DIR=" + sdk_dir] + cmake_flags)
314-
_run(["cmake", "--build", "."])
313+
cmake_configure_cmd = ["cmake", ".", "-DCMAKE_BUILD_TYPE=Debug",
314+
"-DFIREBASE_CPP_SDK_DIR=" + sdk_dir]
315+
if utils.is_windows_os():
316+
cmake_configure_cmd += ["-A", "x64"]
317+
_run(cmake_configure_cmd + cmake_flags)
318+
_run(["cmake", "--build", ".", "--config", "Debug"])
315319

316320

317321
def _get_desktop_compiler_flags(compiler, compiler_table):

0 commit comments

Comments
 (0)