Skip to content

Commit

Permalink
A work-flow for checking the driver compiles
Browse files Browse the repository at this point in the history
  • Loading branch information
bo3z committed Oct 22, 2024
1 parent 5621093 commit ebfb6b2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build_driver.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# A work-flow for compiling the Coyote driver; for now, we are testing on Ubuntu 20.04
# This checks no extreme breaking changes were done in the driver, i.e. at least it compiles
name: Compile driver

# Run on every push, makes dev and PR reviews easier
on: push

jobs:
sphinx-build:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2

# We do some additional logging, just so that we can back-trace the Linux / Ubuntu version
- name: Compile driver
run:
cd driver && uname -r && lsb_release -a && make

0 comments on commit ebfb6b2

Please sign in to comment.