Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ab6516a

Browse files
committedAug 30, 2024··
try install dkms module
1 parent 2982e34 commit ab6516a

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed
 

‎.github/workflows/package.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,19 @@ jobs:
2121
- name: make dkms source package
2222
run: |
2323
fakeroot debian/rules binary
24-
mv ../linux-rex-dkms*_all.deb .
24+
mv ../rex-dkms*_all.deb .
2525
2626
- name: upload package artifacts
2727
uses: actions/upload-artifact@v4
2828
with:
2929
name: package
30-
path: linux-rex-dkms*_all.deb
30+
path: rex-dkms*_all.deb
3131
if-no-files-found: error
32+
33+
# The package contains only sources. Let's check that it's buildable,
34+
# and no surprising errors apeear in the build log.
35+
36+
- name: build module with dkms
37+
run: |
38+
apt-get install -y ./rex-dkms*_all.deb \
39+
|| ( find /var/lib/dkms -name make.log -exec cat '{}' \; && false )

0 commit comments

Comments
 (0)
Please sign in to comment.