fd9581a34e
.. as XML_POOR_ENTROPY was intended to catch _accidental_ compilation with no provider of high quality entropy enabled for _non-Autoconf_ build systems from the start.
27 lines
408 B
YAML
27 lines
408 B
YAML
# Copyright (C) 2017 Sebastian Pipping <sebastian@pipping.org>
|
|
# Licensed under the MIT license
|
|
|
|
language: cpp
|
|
dist: trusty
|
|
|
|
env:
|
|
global:
|
|
- CFLAGS='-g -pipe'
|
|
matrix:
|
|
- MODE=address
|
|
- MODE=lib-coverage
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- llvm-toolchain-trusty-4.0
|
|
packages:
|
|
- clang-4.0
|
|
- docbook2x
|
|
- dos2unix
|
|
|
|
script:
|
|
- cd expat
|
|
- ./buildconf.sh
|
|
- ./qa.sh ${MODE}
|