Try CI via Docker

This commit is contained in:
project-repo 2023-04-18 22:18:06 +02:00
commit 599f6c3bdb
2 changed files with 10 additions and 1 deletions

7
.github/workflows/Dockerfile vendored Normal file
View file

@ -0,0 +1,7 @@
FROM archlinux:latest
RUN bash scripts/install-development-environment
RUN meson setup build/ -Dxwayland=true -Dman-pages=true --buildtype=release
RUN ninja -C build/
RUN meson test -C build/

View file

@ -7,7 +7,9 @@ on:
jobs:
linux:
runs-on: archlinux:latest
runs:
using: 'docker'
image: 'Dockerfile'
steps:
- uses: actions/checkout@v3
- run: bash scripts/install-development-environment