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:
parent
33ec2c3e96
commit
0b58a60509
|
@ -39,14 +39,14 @@ jobs:
|
||||||
if: success()
|
if: success()
|
||||||
|
|
||||||
build-native-deb:
|
build-native-deb:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
container:
|
container:
|
||||||
image: debian:testing
|
image: debian:testing
|
||||||
steps:
|
steps:
|
||||||
- name: Installing Dependencies
|
- name: Installing Dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update > /dev/null 2>&1
|
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
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
Loading…
Reference in New Issue