Hook up CircleCI for basic tests
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
442dd5e53e
commit
fc16085597
|
@ -0,0 +1,17 @@
|
|||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
working_directory: ~/tuhi
|
||||
docker:
|
||||
- image: fedora:latest
|
||||
steps:
|
||||
- run:
|
||||
command: |
|
||||
dnf install -y meson gettext python3-devel pygobject3-devel python3-flake8
|
||||
- run:
|
||||
command: |
|
||||
meson builddir
|
||||
ninja -C builddir test
|
||||
- store_artifacts:
|
||||
path: ~/tuhi/builddir/meson-logs
|
||||
|
Loading…
Reference in New Issue