Skip to content

Commit be6ad15

Browse files
committed
wcow: enable integration tests on WS2025
Re-enabling integration tests on WS2025. WIP: still needs investigation why the tests take longer on WS2025, upto 2x for some. Signed-off-by: Anthony Nandaa <[email protected]>
1 parent f2f3719 commit be6ad15

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/test-os.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ jobs:
7878
needs:
7979
- build
8080
env:
81-
TESTFLAGS: "-v --timeout=60m"
81+
TESTFLAGS: "-v --timeout=120m"
8282
GOTESTSUM_FORMAT: "standard-verbose"
8383
strategy:
8484
fail-fast: false
8585
matrix:
86-
os: [windows-2022]
86+
os: [windows-2022, windows-2025]
8787
worker:
8888
- containerd
8989
pkg:
@@ -112,6 +112,10 @@ jobs:
112112
worker: containerd
113113
pkg: ./...
114114
skip-integration-tests: 1
115+
- os: windows-2025
116+
worker: containerd
117+
pkg: ./...
118+
skip-integration-tests: 1
115119
steps:
116120
-
117121
name: Prepare

client/client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11423,7 +11423,7 @@ func testLLBMountPerformance(t *testing.T, sb integration.Sandbox) {
1142311423
require.NoError(t, err)
1142411424

1142511425
// Windows images take longer time
11426-
timeout := integration.UnixOrWindows(time.Minute, 3*time.Minute)
11426+
timeout := integration.UnixOrWindows(time.Minute, 6*time.Minute)
1142711427
timeoutCtx, cancel := context.WithTimeoutCause(sb.Context(), timeout, nil)
1142811428
defer cancel()
1142911429
_, err = c.Solve(timeoutCtx, def, SolveOpt{}, nil)

0 commit comments

Comments
 (0)