Skip to content

Commit 6c3db5c

Browse files
authored
Merge pull request #6200 from trws/matrix-timeouts
matrix: remove fedora40 arm again
2 parents f0da060 + 2fd67d9 commit 6c3db5c

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
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 alpine fedora40 ; 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: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def env_add_s3(self, args, env):
8383
def add_build(
8484
self,
8585
name=None,
86-
image="fedora40",
86+
image=None,
8787
args=default_args,
8888
jobs=6,
8989
env=None,
@@ -208,18 +208,6 @@ def __str__(self):
208208
TEST_INSTALL="t",
209209
),
210210
)
211-
fedora40_platforms = deepcopy(DEFAULT_MULTIARCH_PLATFORMS)
212-
fedora40_platforms["linux/arm64"]["timeout_minutes"] = 240
213-
matrix.add_multiarch_build(
214-
name="fedora40",
215-
default_suffix=" - test-install",
216-
args=common_args,
217-
platforms=fedora40_platforms,
218-
env=dict(
219-
TEST_INSTALL="t",
220-
),
221-
docker_tag=True,
222-
)
223211

224212
matrix.add_multiarch_build(
225213
name="noble",
@@ -246,6 +234,16 @@ def __str__(self):
246234
),
247235
)
248236
# single arch builds that still produce a container
237+
matrix.add_build(
238+
name="fedora40 - test-install",
239+
image="fedora40",
240+
args=common_args,
241+
env=dict(
242+
TEST_INSTALL="t",
243+
),
244+
docker_tag=True,
245+
)
246+
249247
# Ubuntu: TEST_INSTALL
250248
matrix.add_build(
251249
name="jammy - test-install",
@@ -282,6 +280,7 @@ def __str__(self):
282280
# fedora40: clang-18
283281
matrix.add_build(
284282
name="fedora40 - clang-18",
283+
image="fedora40",
285284
env=dict(
286285
CC="clang-18",
287286
CXX="clang++-18",
@@ -322,6 +321,7 @@ def __str__(self):
322321
# inception
323322
matrix.add_build(
324323
name="inception",
324+
image="fedora40",
325325
command_args="--inception",
326326
)
327327

0 commit comments

Comments
 (0)