Skip to content

Commit 2c0326d

Browse files
committed
Do not try to update Ubuntu 24.04 due to a bug in systemd package
1 parent 53f1a46 commit 2c0326d

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/test.main.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,11 @@ workflowWithCopyright(
765765
update = true
766766
),
767767
// work-around for https://bugs.kali.org/view.php?id=6672
768-
condition = "matrix.distribution.user-id != 'kali-linux'"
768+
// and https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/2069555
769+
condition = """
770+
(matrix.distribution.user-id != 'kali-linux')
771+
&& (matrix.distribution.user-id != 'Ubuntu-24.04')
772+
""".trimIndent()
769773
)
770774
executeActionStep = usesSelf(
771775
name = "Install default absent tool",

.github/workflows/test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1434,7 +1434,9 @@ jobs:
14341434
with:
14351435
distribution: '${{ matrix.distribution.user-id }}'
14361436
update: 'true'
1437-
if: 'matrix.distribution.user-id != ''kali-linux'''
1437+
if: |-
1438+
(matrix.distribution.user-id != 'kali-linux')
1439+
&& (matrix.distribution.user-id != 'Ubuntu-24.04')
14381440
- id: 'step-3'
14391441
name: 'Install default absent tool'
14401442
uses: './'

0 commit comments

Comments
 (0)