Skip to content

Commit fae50db

Browse files
committed
Adding ws2025 to the dep_rest matrix
Signed-off-by: Mark Rossetti <[email protected]>
1 parent 69e4cbb commit fae50db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/dep_rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242

4343
runs-on: ${{ fromJson(
4444
format('["self-hosted", "{0}", "X64", "1ES.Pool=hld-{1}-{2}"]',
45-
matrix.hypervisor == 'hyperv' && 'Windows' || 'Linux',
46-
matrix.hypervisor == 'hyperv' && 'win2022' || matrix.hypervisor == 'mshv3' && 'azlinux3-mshv' || matrix.hypervisor,
45+
(matrix.hypervisor == 'hyperv' || matrix.hypervisor == 'hyperv-ws2025') && 'Windows' || 'Linux',
46+
matrix.hypervisor == 'hyperv' && 'win2022' || matrix.hypervisor == 'hyperv-ws2025' && 'win2025' || matrix.hypervisor == 'mshv3' && 'azlinux3-mshv' || matrix.hypervisor,
4747
matrix.cpu)) }}
4848
steps:
4949
- uses: actions/checkout@v4

src/hyperlight_host/benches/benchmarks.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fn guest_call_benchmark(c: &mut Criterion) {
6868
let mut config = SandboxConfiguration::default();
6969
config.set_input_data_size(2 * SIZE + (1024 * 1024)); // 2 * SIZE + 1 MB, to allow 1MB for the rest of the serialized function call
7070
config.set_heap_size(SIZE as u64 * 15);
71-
config.set_max_execution_time(Duration::from_secs(10));
71+
config.set_max_execution_time(Duration::from_secs(20));
7272

7373
let sandbox = UninitializedSandbox::new(
7474
GuestBinary::FilePath(simple_guest_as_string().unwrap()),

0 commit comments

Comments
 (0)