2019-08-13 05:22:52 +02:00
|
|
|
version: 2
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
working_directory: ~/tuhi
|
|
|
|
docker:
|
|
|
|
- image: fedora:latest
|
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
command: |
|
2019-08-13 06:31:31 +02:00
|
|
|
dnf install -y meson gettext python3-devel pygobject3-devel python3-flake8 desktop-file-utils libappstream-glib python3-pytest
|
2019-08-13 05:40:44 +02:00
|
|
|
- checkout
|
2019-08-13 05:22:52 +02:00
|
|
|
- run:
|
|
|
|
command: |
|
|
|
|
meson builddir
|
|
|
|
ninja -C builddir test
|
|
|
|
- store_artifacts:
|
|
|
|
path: ~/tuhi/builddir/meson-logs
|
|
|
|
|