view capnp/check.sh @ 211:41ec8ed1c2cb

Require capnp v0.6.1, because newer code won't build with the older compilers available in this Travis image
author Chris Cannam <cannam@all-day-breakfast.com>
date Thu, 09 Aug 2018 10:43:30 +0100
parents 549d3d44d729
children
line wrap: on
line source
#!/bin/bash

mydir=$(dirname "$0")

set -eu

echo

for c in "$mydir"/*.capnp ; do
    echo "Checking $c..." 1>&2
    capnpc -o- "$c" >/dev/null
done

echo OK