1
0
Fork 0
mirror of https://github.com/yaakov-h/scream-driver.git synced 2024-10-16 07:40:02 +00:00

Compare commits

...

4 commits

Author SHA1 Message Date
6942de53ae ls -l
Some checks failed
/ ci (push) Has been cancelled
2024-08-11 21:49:20 +10:00
55dbaae2a8 newer ubuntu pls 2024-08-11 21:48:24 +10:00
9e1e3c0991 get linux-headers 2024-08-11 21:47:04 +10:00
49506749d1 use GitHub Actions for CI 2024-08-11 21:44:29 +10:00

29
.github/workflows/ci.yaml vendored Normal file
View file

@ -0,0 +1,29 @@
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-24.04
steps:
- name: Get code
uses: actions/checkout@v3
- name: Build kernel module
run: make
- name: Load kernel module
run: sudo insmod scream.ko
- name: Check for device
run: ls -l /dev/scream
- name: Read from device
run: head -c 2048 /dev/scream
- name: Unload kernel module
run: sudo rmmod scream.ko