We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2982e34 commit ab6516aCopy full SHA for ab6516a
.github/workflows/package.yml
@@ -21,11 +21,19 @@ jobs:
21
- name: make dkms source package
22
run: |
23
fakeroot debian/rules binary
24
- mv ../linux-rex-dkms*_all.deb .
+ mv ../rex-dkms*_all.deb .
25
26
- name: upload package artifacts
27
uses: actions/upload-artifact@v4
28
with:
29
name: package
30
- path: linux-rex-dkms*_all.deb
+ path: rex-dkms*_all.deb
31
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