image: freebsd/latest
packages:
- pkgconf
- python3
- kyua
sources:
- https://github.com/freebsd/pkg
tasks:
- configure: |
mkdir build
cd build
../pkg/configure
- build: |
cd build
make
- test: |
cd build
make check || { kyua report --verbose; exit 1 ;}