File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ jobs:
312
312
AZURE_CLIENT_SECRET : ${{ secrets.AZURE_CLIENT_SECRET }}
313
313
AZURE_TENANT_ID : ${{ secrets.AZURE_TENANT_ID }}
314
314
needs : build
315
- runs-on : windows
315
+ runs-on : windows-large
316
316
steps :
317
317
- name : Sign and package Windows viewer
318
318
if : env.AZURE_KEY_VAULT_URI && env.AZURE_CERT_NAME && env.AZURE_CLIENT_ID && env.AZURE_CLIENT_SECRET && env.AZURE_TENANT_ID
@@ -412,7 +412,7 @@ jobs:
412
412
- uses : actions/download-artifact@v4
413
413
with :
414
414
pattern : " *-metadata"
415
-
415
+
416
416
- name : Rename metadata
417
417
run : |
418
418
cp Windows-metadata/autobuild-package.xml Windows-autobuild-package.xml
@@ -441,7 +441,7 @@ jobs:
441
441
append_body : true
442
442
fail_on_unmatched_files : true
443
443
files : |
444
- macOS-installer/*.dmg
444
+ macOS-installer/*.dmg
445
445
Windows-installer/*.exe
446
446
*-autobuild-package.xml
447
447
*-viewer_version.txt
Original file line number Diff line number Diff line change @@ -103,6 +103,11 @@ if (WINDOWS)
103
103
string (REPLACE "/Zi" "/Z7" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} " )
104
104
string (REPLACE "/Zi" "/Z7" CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} " )
105
105
endif ()
106
+
107
+ # workaround for github runner image breakage:
108
+ # https://github.com/actions/runner-images/issues/10004#issuecomment-2153445161
109
+ # can be removed after the above issue is resolved and deployed across GHA
110
+ add_compile_definitions (_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR )
106
111
endif (WINDOWS )
107
112
108
113
You can’t perform that action at this time.
0 commit comments