Skip to content

Commit c9ceabf

Browse files
committed
Remove multi arch call, fix test image path
1 parent 120c1af commit c9ceabf

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

scripts/release/atomic_pipeline.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def build_tests_image(build_configuration: BuildConfiguration):
181181

182182
pipeline_process_image(
183183
image_name,
184-
dockerfile_path="Dockerfile",
184+
dockerfile_path="docker/mongodb-kubernetes-tests/Dockerfile",
185185
build_configuration=build_configuration,
186186
dockerfile_args=buildargs,
187187
build_path="docker/mongodb-kubernetes-tests",
@@ -409,9 +409,9 @@ def build_image_generic(
409409
with_sbom=False,
410410
)
411411

412-
# 3) Multi-arch manifest
413-
if is_multi_arch:
414-
create_and_push_manifest(registry + "/" + image_name, version, architectures=architectures)
412+
# # 3) Multi-arch manifest
413+
# if is_multi_arch:
414+
# create_and_push_manifest(registry + "/" + image_name, version, architectures=architectures)
415415

416416
# 4) Signing (only on real releases)
417417
if build_configuration.sign:

scripts/release/build_images.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ def build_image(tag: str, dockerfile: str, path: str, args: Dict[str, str] = {},
117117
builder=builder_name,
118118
build_args=build_args,
119119
push=push,
120+
provenance=False, # To not get an untagged image for single platform builds
120121
pull=False, # Don't always pull base images
121122
)
122123

0 commit comments

Comments
 (0)