Skip to content

Commit

Permalink
Remove publish from mbr build (#868)
Browse files Browse the repository at this point in the history
Temporary so that we don't flood bct with images during implementation testing
  • Loading branch information
jjerger authored Oct 16, 2023
1 parent d984861 commit 9fb6987
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions concourse/pipelines/windows-image-build-mbr.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -269,11 +269,11 @@ local ImgGroup(name, images, environments) = {
jobs: [
'build-' + image
for image in images
] + [
'publish-to-%s-%s' % [env, image]
for env in environments
for image in images
],
//'publish-to-%s-%s' % [env, image]
//for env in environments
//for image in images
//],
};

// Start of output.
Expand Down Expand Up @@ -323,14 +323,14 @@ local ImgGroup(name, images, environments) = {
ImgBuildJob('windows-server-2019-dc-bios', 'win2019-64', 'windows_gcs_updates_server2019'),
ImgBuildJob('windows-server-2016-dc-bios', 'win2016-64', 'windows_gcs_updates_server2016'),
ImgBuildJob('windows-server-2012-r2-dc-bios', 'win2012-r2-64', 'windows_gcs_updates_server2012r2'),
] +

[
ImgPublishJob(image, env, 'windows', 'windows-bios')
for image in images
for env in envs
],

//[
//ImgPublishJob(image, env, 'windows', 'windows-bios')
//for image in images
//for env in envs
//],

groups: [
ImgGroup('windows-2012-bios', windows_2012_images, envs),
ImgGroup('windows-2016-bios', windows_2016_images, envs),
Expand Down

0 comments on commit 9fb6987

Please sign in to comment.