Add virtual DRM and fbdev USB display stack #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |