Travis: Inline .travis.sh for better integration

This commit is contained in:
Sebastian Pipping 2017-03-13 18:43:19 +01:00
parent e064eb4c18
commit ce34ddfe9f
2 changed files with 17 additions and 27 deletions

View file

@ -1,26 +0,0 @@
#! /bin/bash
# Copyright (C) 2017 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license
set -e
PS4='# '
set -x
ret=0
# Run test suite
cd expat
for mode in \
address \
lib-coverage \
; do
git clean -X -f
./buildconf.sh
CFLAGS='-g -pipe' ./qa.sh ${mode} || ret=1
done
exit ${ret}

View file

@ -1,3 +1,6 @@
# Copyright (C) 2017 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license
language: cpp
dist: trusty
@ -9,4 +12,17 @@ addons:
install:
- wget -O expat/tests/xmlts.zip https://www.w3.org/XML/Test/xmlts20080827.zip
script: ./.travis.sh
script:
- cd expat
- |
set -e
ret=0
for mode in \
address \
lib-coverage \
; do
git clean -X -f
./buildconf.sh
CFLAGS='-g -pipe' ./qa.sh ${mode} || ret=1
done
exit ${ret}