Skip to content

Commit 61397ca

Browse files
committed
ci: Disable test-coreos
This job recently fell over, and surprisingly it wasn't the DPS changes, it was ostreedev/ostree#3571 which stopped mounting `/boot` in the initramfs. Our flow here does an install without a separate `/boot` partition (which is not a normal FCOS path) and the combo of these things breaks. The real fix here will be cutting over this job to use coreos-assembler, but it's a big lift. Just disabling this job for now to unblock our CI - in practice we do have coverage testing bootc with FCOS, just later. Signed-off-by: Colin Walters <walters@verbum.org>
1 parent 8ef2ae9 commit 61397ca

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,10 @@ jobs:
311311
# when run in the same job as test-integration).
312312
# Uses fedora-43 as it's the current stable Fedora release matching CoreOS.
313313
test-coreos:
314+
# https://github.com/ostreedev/ostree/pull/3571 broke this because /boot
315+
# without a separate /boot partition isn't mounted in the initramfs anymore.
316+
# We need to change to use coreos-assembler.
317+
if: false
314318
needs: package
315319
runs-on: ubuntu-24.04
316320

@@ -387,7 +391,7 @@ jobs:
387391
# Sentinel job for required checks - configure this job name in repository settings
388392
required-checks:
389393
if: always()
390-
needs: [cargo-deny, validate, package, test-integration, test-upgrade, test-coreos, test-container-export]
394+
needs: [cargo-deny, validate, package, test-integration, test-upgrade, test-container-export]
391395
runs-on: ubuntu-latest
392396
steps:
393397
- run: exit 1
@@ -397,5 +401,4 @@ jobs:
397401
needs.package.result != 'success' ||
398402
needs.test-integration.result != 'success' ||
399403
needs.test-upgrade.result != 'success' ||
400-
needs.test-coreos.result != 'success' ||
401404
needs.test-container-export.result != 'success'

0 commit comments

Comments
 (0)