blob: 814c1dc72f6640462e9b46db7d04c93a89181c64 [file] [log] [blame]
# Copyright (C) 2017 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license
language: cpp
dist: trusty
addons:
apt:
packages:
- docbook2x
install:
- wget -O xmlts.zip https://www.w3.org/XML/Test/xmlts20080827.zip
script:
- cd expat
- |
set -e
ret=0
for mode in \
address \
lib-coverage \
; do
git clean -X -d -f
cp -v ../xmlts.zip tests/xmlts.zip
./buildconf.sh
CFLAGS='-g -pipe' ./qa.sh ${mode} || ret=1
done
exit ${ret}