In .travis.yml:

> +    fi
> +  - test -z "$TEMPDIR" || rm -rf "$TEMPDIR"
> +  - export PKG_CONFIG_PATH="$HOME/$libgit2dir/lib/pkgconfig:$PKG_CONFIG_PATH"
> +  - export LD_LIBRARY_PATH="$HOME/$libgit2dir/lib:$LD_LIBRARY_PATH"
> +
> +before_script:
> +  # prepare for GP
> +  - export CFLAGS="-g -O2 -Werror=pointer-arith -Werror=aggregate-return -Werror=implicit-function-declaration"
> +
> +script:
> +  - >
> +    NOCONFIGURE=1 ./autogen.sh  &&
> +    mkdir _build                &&
> +    cd _build                   &&
> +    ../configure                &&
> +    make -j2                    &&

Do we really want to build with j2? On Travis I don't see much we are winning but error output might be harder to read.


Reply to this email directly or view it on GitHub.