Fix OpenZFS build issue for Debian Bookworm

dkms package layout is changed in bookworm and splits into dh-dkms
package. Debhelper in Bookworm is updated to use dh-sequence-dkms
instead of dkms.

GitHub Actions are updated to use Ubuntu 22.04 instead of Ubuntu
20.04, since dh-sequence-dkms is not aavailable on Ubuntu 20.04.

Signed-off-by: Umer Saleem <usaleem@ixsystems.com>
This commit is contained in:
Umer Saleem 2023-04-14 00:17:30 +05:00 committed by Ameer Hamza
parent 33ec2c3e96
commit 0b58a60509
1 changed files with 2 additions and 2 deletions

View File

@ -39,14 +39,14 @@ jobs:
if: success()
build-native-deb:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
container:
image: debian:testing
steps:
- name: Installing Dependencies
run: |
apt update > /dev/null 2>&1
apt install -y debhelper-compat devscripts > /dev/null 2>&1
apt install -y linux-image-amd64 linux-headers-amd64 debhelper-compat devscripts > /dev/null 2>&1
- name: Checkout
uses: actions/checkout@v2