Hook up CircleCI for basic tests

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
pull/150/head
Peter Hutterer 2019-08-13 13:22:52 +10:00
parent 442dd5e53e
commit fc16085597
1 changed files with 17 additions and 0 deletions

17
.circleci/config.yml Normal file
View File

@ -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