comparison .travis.yml @ 1680:5e763ad6e2e0

run linter
author Matt Johnston <matt@ucc.asn.au>
date Sun, 24 May 2020 13:34:19 +0800
parents d32bcb5c557d
children d2d3b5ba6c64
comparison
equal deleted inserted replaced
1679:90fffce0ee99 1680:5e763ad6e2e0
44 install: 44 install:
45 - autoconf 45 - autoconf
46 - autoheader 46 - autoheader
47 - ./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $WEXTRAFLAGS $EXTRACFLAGS" --prefix="$HOME/inst" || (cat config.log; exit 1) 47 - ./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $WEXTRAFLAGS $EXTRACFLAGS" --prefix="$HOME/inst" || (cat config.log; exit 1)
48 - if [ "$NOWRITEV" = "1" ]; then sed -i -e s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h ; fi 48 - if [ "$NOWRITEV" = "1" ]; then sed -i -e s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h ; fi
49 - make lint
49 - make -j3 50 - make -j3
50 - test -z $DO_FUZZ || make fuzzstandalone 51 - test -z $DO_FUZZ || make fuzzstandalone
51 # avoid concurrent install, osx/freebsd is racey (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208093) 52 # avoid concurrent install, osx/freebsd is racey (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208093)
52 - make install 53 - make install
53 54