Skip to content

Commit 97520e0

Browse files
committed
Split windows 32 bit and 64 bit jobs, as github windows runners are much slower
1 parent 900177a commit 97520e0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,9 +609,15 @@ jobs:
609609
fail-fast: false
610610
matrix:
611611
include:
612+
#------------------
613+
#Windows runners are much slower, split 32/64 bit jobs
612614
- toolset: msvc-14.3
613615
cxxstd: "14,17,20,latest"
614-
addrmd: 32,64
616+
addrmd: 32
617+
os: windows-2025
618+
- toolset: msvc-14.3
619+
cxxstd: "14,17,20,latest"
620+
addrmd: 64
615621
os: windows-2025
616622
- toolset: clang-win
617623
cxxstd: "14,17,latest"
@@ -629,6 +635,7 @@ jobs:
629635
- name: Setup Boost
630636
shell: cmd
631637
run: |
638+
Set-MpPreference -DisableRealtimeMonitoring $true
632639
echo GITHUB_REPOSITORY: %GITHUB_REPOSITORY%
633640
for /f %%i in ("%GITHUB_REPOSITORY%") do set LIBRARY=%%~nxi
634641
echo LIBRARY: %LIBRARY%

0 commit comments

Comments
 (0)