]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
ci: remove leftover and duplicated GitHub Action
authorJo Zzsi <jozzsicsataban@gmail.com>
Sat, 10 Jan 2026 15:42:39 +0000 (10:42 -0500)
committerLaszlo <laszlo.gombos@gmail.com>
Sat, 10 Jan 2026 15:48:52 +0000 (10:48 -0500)
daily-systemd-arm64 GitHub Action is no longer needed as it is
covered by daily-systemd.

Follow-up to a43bd7a .

.github/workflows/daily-systemd-arm64.yml [deleted file]

diff --git a/.github/workflows/daily-systemd-arm64.yml b/.github/workflows/daily-systemd-arm64.yml
deleted file mode 100644 (file)
index 558c727..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
----
-name: Daily Tests - systemd (arm64)
-
-on:  # yamllint disable-line rule:truthy
-    schedule:
-        - cron: '30 23 * * *'   # every day at 23:30 UTC
-
-    # Allows you to run this workflow manually from the Actions tab
-    workflow_dispatch:
-
-    pull_request:
-        paths:
-            - '.github/workflows/daily-systemd-arm64.yml'
-
-jobs:
-    systemd:
-        name: ${{ matrix.test }} on ${{ matrix.container }} on arm64
-        runs-on: ubuntu-24.04-arm
-        timeout-minutes: 20
-        concurrency:
-            group: daily-systemd-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}-arm
-            cancel-in-progress: true
-        strategy:
-            fail-fast: false
-            matrix:
-                container:
-                    - debian:latest
-                    - debian:sid
-                    - gentoo:latest
-                    - opensuse:latest
-                    - ubuntu:devel
-                    - ubuntu:rolling
-                test:
-                    - "40"
-                    - "41"
-                    - "42"
-                    - "43"
-                    - "44"
-                exclude:
-                    # mkosi test step fails
-                    - container: opensuse:latest
-                      test: "41"
-                    # fails with key file '/run/credentials/@system/key' missing
-                    - container: gentoo:latest
-                      test: "41"
-                    # /boot/vmlinuz-... is missing .efi suffix: https://launchpad.net/bugs/2133402
-                    - container: ubuntu:devel
-                      test: "43"
-                    # /boot/vmlinuz-... is missing .efi suffix: https://launchpad.net/bugs/2133402
-                    - container: ubuntu:rolling
-                      test: "43"
-        container:
-            image: ghcr.io/dracut-ng/${{ matrix.container }}-arm
-            options: '--device=/dev/kvm --privileged'
-        steps:
-            - name: "Checkout Repository"
-              uses: actions/checkout@v6
-            - name: "${{ matrix.container }} TEST-${{ matrix.test }}"
-              run: ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}