Skip to content

Commit

Permalink
Do not try to update Ubuntu 24.04 due to a bug in systemd package
Browse files Browse the repository at this point in the history
  • Loading branch information
Vampire committed Aug 15, 2024
1 parent 53f1a46 commit 2c0326d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,11 @@ workflowWithCopyright(
update = true
),
// work-around for https://bugs.kali.org/view.php?id=6672
condition = "matrix.distribution.user-id != 'kali-linux'"
// and https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/2069555
condition = """
(matrix.distribution.user-id != 'kali-linux')
&& (matrix.distribution.user-id != 'Ubuntu-24.04')
""".trimIndent()
)
executeActionStep = usesSelf(
name = "Install default absent tool",
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1434,7 +1434,9 @@ jobs:
with:
distribution: '${{ matrix.distribution.user-id }}'
update: 'true'
if: 'matrix.distribution.user-id != ''kali-linux'''
if: |-
(matrix.distribution.user-id != 'kali-linux')
&& (matrix.distribution.user-id != 'Ubuntu-24.04')
- id: 'step-3'
name: 'Install default absent tool'
uses: './'
Expand Down

0 comments on commit 2c0326d

Please sign in to comment.