Skip to content

Commit bc015b6

Browse files
authored
Merge pull request #6188 from trws/demote-fedora
docker: Demote fedora40 to x86_64 only
2 parents 8723425 + f0fa155 commit bc015b6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ jobs:
254254
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
255255
docker manifest create fluxrm/flux-core:bookworm fluxrm/flux-core:bookworm-amd64 fluxrm/flux-core:bookworm-386 fluxrm/flux-core:bookworm-arm64
256256
docker manifest push fluxrm/flux-core:bookworm
257-
for d in el9 noble fedora40 alpine ; do
257+
for d in el9 noble alpine ; do
258258
docker manifest create fluxrm/flux-core:$d fluxrm/flux-core:$d-amd64 fluxrm/flux-core:$d-arm64
259259
docker manifest push fluxrm/flux-core:$d
260260
done

src/test/generate-matrix.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -217,14 +217,6 @@ def __str__(self):
217217
TEST_INSTALL="t",
218218
),
219219
)
220-
matrix.add_multiarch_build(
221-
name="fedora40",
222-
default_suffix=" - test-install",
223-
args=common_args,
224-
env=dict(
225-
TEST_INSTALL="t",
226-
),
227-
)
228220
matrix.add_multiarch_build(
229221
name="alpine",
230222
default_suffix=" - test-install",
@@ -241,6 +233,14 @@ def __str__(self):
241233
)
242234

243235
# single arch builds that still produce a container
236+
matrix.add_build(
237+
name="fedora40 - test-install",
238+
args=common_args,
239+
env=dict(
240+
TEST_INSTALL="t",
241+
),
242+
docker_tag=True,
243+
)
244244
# Ubuntu: TEST_INSTALL
245245
matrix.add_build(
246246
name="jammy - test-install",

0 commit comments

Comments
 (0)