From: Jo Zzsi Date: Sat, 10 Jan 2026 15:42:39 +0000 (-0500) Subject: ci: remove leftover and duplicated GitHub Action X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf5b7cab6926b9d2475cb38fca0168df66fbffac;p=thirdparty%2Fdracut-ng.git ci: remove leftover and duplicated GitHub Action daily-systemd-arm64 GitHub Action is no longer needed as it is covered by daily-systemd. Follow-up to a43bd7a . --- diff --git a/.github/workflows/daily-systemd-arm64.yml b/.github/workflows/daily-systemd-arm64.yml deleted file mode 100644 index 558c72757..000000000 --- a/.github/workflows/daily-systemd-arm64.yml +++ /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 }}