diff --git a/utils/run_in_ci.py b/utils/run_in_ci.py index bf4ddd51..649247c0 100644 --- a/utils/run_in_ci.py +++ b/utils/run_in_ci.py @@ -145,6 +145,11 @@ def make_windows_pfx_file(certificate_file_path, private_key_path, pfx_file_path if os.path.isfile(copy_path[0] + ".key"): os.remove(copy_path[0] + ".key") + test_ls_run = subprocess.run(args=["pwsh.exe", "ls"], shell=True, capture_output=True, text=True) + print("import out: " + str(test_ls_run.stdout)) + print("import err: " + str(test_ls_run.stderr)) + + # Import the PFX into the Windows Certificate Store # (Passing '$mypwd' is required even though it is empty and our certificate has no password. It fails CI otherwise) import_pfx_arguments = ["pwsh.exe", "-Command", "{\"Import-PfxCertificate -FilePath " + pfx_file_path + " -CertStoreLocation Cert:\\" + pfx_certificate_store_location + " -Password $mypwd \"}"]