Files
piper/circle.yml
Jente Hidskes 4acede1397 Add support for translations
Based on earlier work by @whot:

44d8265d4a

Fixes #12.
2017-08-23 12:38:51 +10:00

25 lines
605 B
YAML

version: 2
jobs:
build:
working_directory: ~/piper
docker:
- image: fedora:latest
steps:
- run:
command: |
dnf install -y git python3-flake8
- checkout
- run: flake8-3 .
# now install and checks the resulting file (just in case)
- run:
command: |
dnf install -y meson gettext python3-devel pygobject3-devel
- run:
command: |
meson build
ninja -C build
- run: flake8-3 build/piper build/piper.devel
- store_artifacts:
path: ~/piper/build/meson-logs