Skip to content

Commit 1de203d

Browse files
authored
Add missing benchmark runs for windows server 2025 (#876)
Signed-off-by: Simon Davies <[email protected]>
1 parent f3e9638 commit 1de203d

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/Benchmarks.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,18 @@ jobs:
1414
# its execution. this dependency should be expressed in the dependent
1515
# workflow
1616
benchmark:
17+
timeout-minutes: 60
1718
strategy:
1819
fail-fast: true
1920
matrix:
20-
hypervisor: [hyperv, mshv, mshv3, kvm] # hyperv is windows, mshv and kvm are linux
21+
hypervisor: [hyperv, 'hyperv-ws2025', mshv, mshv3, kvm] # hyperv,hyperv-ws2025 are windows, mshv, mshv3 and kvm are linux
2122
cpu: [amd, intel]
22-
config: [release] # don't want to benchmark debug-builds
23-
24-
runs-on: ${{ fromJson(format('["self-hosted", "{0}", "X64", "1ES.Pool=hld-{1}-{2}"]', matrix.hypervisor == 'hyperv' && 'Windows' || 'Linux', matrix.hypervisor == 'hyperv' && 'win2022' || matrix.hypervisor == 'mshv3' && 'azlinux3-mshv' || matrix.hypervisor, matrix.cpu)) }}
25-
23+
config: [release]
24+
runs-on: ${{ fromJson(
25+
format('["self-hosted", "{0}", "X64", "1ES.Pool=hld-{1}-{2}"]',
26+
(matrix.hypervisor == 'hyperv' || matrix.hypervisor == 'hyperv-ws2025') && 'Windows' || 'Linux',
27+
matrix.hypervisor == 'hyperv' && 'win2022' || matrix.hypervisor == 'hyperv-ws2025' && 'win2025' || matrix.hypervisor == 'mshv3' && 'azlinux3-mshv' || matrix.hypervisor,
28+
matrix.cpu)) }}
2629
steps:
2730
### Setup ###
2831

0 commit comments

Comments
 (0)