Skip to content

Commit 93edbef

Browse files
trwsgrondo
authored andcommitted
matrix: fix format string to build arm images
problem: {d} was not getting expanded, breaking arm64 builds and manifest generation
1 parent 2cec1bb commit 93edbef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/generate-matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def __str__(self):
159159
for d in ("bookworm", "noble", "fedora40", "el9"):
160160
matrix.add_build(
161161
name=f"{d} - arm64",
162-
image="{d}",
162+
image=f"{d}",
163163
platform="linux/arm64",
164164
docker_tag=True,
165165
command_args="--install-only ",

0 commit comments

Comments
 (0)