Skip to content

Commit

Permalink
Exclude known-failing mdsroutes test from image build but not guest-a…
Browse files Browse the repository at this point in the history
…gent build pipelines (#1231)
  • Loading branch information
a-crate authored Sep 3, 2024
1 parent ffddc26 commit 4768350
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion concourse/pipelines/linux-image-build.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ local imgbuildtask = daisy.daisyimagetask {
};

local imagetesttask = common.imagetesttask {
exclude: '(oslogin)|(storageperf)|(networkperf)|(shapevalidation)|(mdsmtls)',
exclude: '(oslogin)|(storageperf)|(networkperf)|(shapevalidation)|(mdsmtls)|(mdsroutes)',
};

local prepublishtesttask = common.imagetesttask {
Expand Down
2 changes: 1 addition & 1 deletion concourse/pipelines/partner-image-validations.jsonnet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local common = import '../templates/common.libsonnet';
local imagetesttask = common.imagetesttask {
exclude: '(oslogin)|(storageperf)|(networkperf)|(shapevalidation)|(hotattach)|(lssd)|(mdsmtls)',
exclude: '(oslogin)|(storageperf)|(networkperf)|(shapevalidation)|(hotattach)|(lssd)|(mdsmtls)|(mdsroutes)',
};

local imagevalidationjob = {
Expand Down
2 changes: 1 addition & 1 deletion concourse/pipelines/windows-image-build-mbr.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local envs = ['testing'];
local underscore(input) = std.strReplace(input, '-', '_');

local imagetesttask = common.imagetesttask {
exclude: '(networkperf)|(oslogin)|(security)|(sql)|(storageperf)|(windowscontainers)|(mdsmtls)',
exclude: '(networkperf)|(oslogin)|(security)|(sql)|(storageperf)|(windowscontainers)|(mdsmtls)|(mdsroutes)',
extra_args: [ '-x86_shape=n1-standard-4', '-shapevalidation_test_filter=^(([A-Z][0-3])|(N4))' ],
};

Expand Down
2 changes: 1 addition & 1 deletion concourse/pipelines/windows-image-build-staging.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ local underscore(input) = std.strReplace(input, '-', '_');

// Templates.
local imagetesttask = common.imagetesttask {
exclude: '(oslogin)|(storageperf)|(networkperf)|(mdsmtls)',
exclude: '(oslogin)|(storageperf)|(networkperf)|(mdsmtls)|(mdsroutes)',
extra_args: [ '-x86_shape=n1-standard-4', '-shapevalidation_test_filter=^(([A-Z][0-3])|(N4))' ],
};

Expand Down
2 changes: 1 addition & 1 deletion concourse/pipelines/windows-image-build-standard.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local underscore(input) = std.strReplace(input, '-', '_');

// Templates.
local imagetesttask = common.imagetesttask {
exclude: '(oslogin)|(storageperf)|(networkperf)|(mdsmtls)',
exclude: '(oslogin)|(storageperf)|(networkperf)|(mdsmtls)|(mdsroutes)',
extra_args: [ '-x86_shape=n1-standard-4', '-shapevalidation_test_filter=^(([A-Z][0-3])|(N4))' ],
};

Expand Down
2 changes: 1 addition & 1 deletion concourse/pipelines/windows-image-build.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ local underscore(input) = std.strReplace(input, '-', '_');

// Templates.
local imagetesttask = common.imagetesttask {
exclude: '(oslogin)|(storageperf)|(networkperf)|(mdsmtls)',
exclude: '(oslogin)|(storageperf)|(networkperf)|(mdsmtls)|(mdsroutes)',
extra_args: [ '-x86_shape=n1-standard-4', '-shapevalidation_test_filter=^(([A-Z][0-3])|(N4))' ],
};

Expand Down

0 comments on commit 4768350

Please sign in to comment.