mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 13:14:59 +00:00
Travis: Inline .travis.sh for better integration
This commit is contained in:
parent
e064eb4c18
commit
ce34ddfe9f
2 changed files with 17 additions and 27 deletions
26
.travis.sh
26
.travis.sh
|
@ -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}
|
18
.travis.yml
18
.travis.yml
|
@ -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}
|
||||
|
|
Loading…
Add table
Reference in a new issue