Skip to content

Commit

Permalink
Change the timeout for Windows CIT tests run in the build pipeline to (
Browse files Browse the repository at this point in the history
…#1323)

60m.
  • Loading branch information
Zach Marano authored Dec 12, 2024
1 parent 41bf90b commit 521715d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions concourse/pipelines/windows-image-build.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ local underscore(input) = std.strReplace(input, '-', '_');
// Templates.
local imagetestn1 = common.imagetesttask {
filter: '^(cvm|livemigrate|suspendresume|loadbalancer|guestagent|hostnamevalidation|imageboot|licensevalidation|network|security|hotattach|lssd|disk|shapevalidation|packageupgrade|packagevalidation|ssh|winrm|metadata|sql|windowscontainers)$',
extra_args: [ '-x86_shape=n1-standard-4', '-shapevalidation_test_filter=^(([A-Z][0-3])|(N4))' ],
extra_args: [ '-x86_shape=n1-standard-4', '-timeout=60m', '-shapevalidation_test_filter=^(([A-Z][0-3])|(N4))' ],
};

local imagetestc3 = common.imagetesttask {
filter: '^(livemigrate|suspendresume|imageboot|network|hotattach|lssd|disk)$',
extra_args: [ '-x86_shape=c3-standard-4' ],
extra_args: [ '-x86_shape=c3-standard-4', '-timeout=60m' ],
};

local imgbuildjob = {
Expand Down

0 comments on commit 521715d

Please sign in to comment.