[esnacc-dev] [PATCH] travis: Work around libtoolize errors
Aaron Conole
aconole at redhat.com
Thu Sep 29 15:52:53 UTC 2016
Sagara Wickramasekara <sagaraw at gmail.com> writes:
> Does this actually fix the problem? I was looking at your branch and see the travis build is broken there
> as well
Heh. That's a different failure. The docbook server is on the fritz.
The travis fix you'll see if you push to your fork - the mac os builds
will fail. Documented issue with travis' base image.
-Aaron
> On Fri, Sep 23, 2016 at 5:25 PM, Aaron Conole <aconole at bytheb.org> wrote:
>
> Recent travis update broke libtoolize, so we'll work around the
> libtool problems.
>
> Signed-off-by: Aaron Conole <aconole at bytheb.org>
> ---
> .travis.yml | 2 ++
> travis-prepare.sh | 6 ++++++
> 2 files changed, 8 insertions(+)
> create mode 100755 travis-prepare.sh
>
> diff --git a/.travis.yml b/.travis.yml
> index 0913ac3..464540a 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -27,6 +27,8 @@ addons:
> build_command: "make"
> branch_pattern: coverity
>
> +before_script: ./travis-prepare.sh
> +
> script:
> - ./boot.sh
> - ./configure
> diff --git a/travis-prepare.sh b/travis-prepare.sh
> new file mode 100755
> index 0000000..2dcf839
> --- /dev/null
> +++ b/travis-prepare.sh
> @@ -0,0 +1,6 @@
> +#!/bin/bash
> +
> +if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
> + brew uninstall libtool && brew install libtool ||
> + echo "Failed fixing libtool error"
> +fi
> --
> 2.7.4
>
> _______________________________________________
> dev mailing list
> dev at lists.esnacc.org
> http://mail.esnacc.org/mailman/listinfo/dev
More information about the dev
mailing list