Skip to content

Commit

Permalink
add simple github actions build workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Luebbe <[email protected]>
  • Loading branch information
jluebbe committed Jul 4, 2024
1 parent c232fa9 commit c339a08
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: tests

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Inspect environment
run: |
gcc --version
- name: Install dependencies
run: |
sudo apt-get update
DEBIAN_FRONTEND='noninteractive' sudo apt-get install -qy meson libtool libdrm-dev
- uses: actions/checkout@v4

- name: Build
run: |
meson setup build # enable -Dwerror=true later
meson configure build
meson compile -C build

0 comments on commit c339a08

Please sign in to comment.