test: add regression tests for building docker containers (#25210)

This commit is contained in:
Meghan Denny
2025-12-01 20:20:06 -08:00
committed by GitHub
parent a4aaec5b2f
commit fe0aba79f4
6 changed files with 71 additions and 3 deletions

View File

@@ -77,9 +77,8 @@ const testTimeout = 3 * 60_000;
const integrationTimeout = 5 * 60_000;
function getNodeParallelTestTimeout(testPath) {
if (testPath.includes("test-dns")) {
return 90_000;
}
if (testPath.includes("test-dns")) return 60_000;
if (testPath.includes("-docker-")) return 60_000;
if (!isCI) return 60_000; // everything slower in debug mode
if (options["step"]?.includes("-asan-")) return 60_000;
return 20_000;