Skip to content

Add virtual DRM and fbdev USB display stack #1

Add virtual DRM and fbdev USB display stack

Add virtual DRM and fbdev USB display stack #1

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
userspace:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build userspace and tools
run: make userspace
- name: Smoke-test plugin loading
run: build/usb-displayd --help || test $? -eq 1
kernel-4-15:
runs-on: ubuntu-latest
container: ubuntu:18.04
steps:
- uses: actions/checkout@v3
- name: Install Linux 4.15 build dependencies
run: apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential linux-headers-generic
- name: Build module
run: |
KDIR=$(find /usr/src -maxdepth 1 -type d -name 'linux-headers-*-generic' | sort -V | tail -n 1)
test -n "$KDIR"
make module KDIR="$KDIR"