diff options
author | Matt Johnston <matt@ucc.asn.au> | 2016-04-12 21:22:21 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2016-04-12 21:22:21 +0800 |
commit | a453b0616802ea82f6ea1d30b59e382dfcec377e (patch) | |
tree | 355d6319d42c48af27a136a91f5c634d5a65f5af /.travis.yml | |
parent | 103036c5465614b817d2d4644b8e84e6173b0a1f (diff) |
Avoid osx "install" race
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index cb0149c..7852711 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,7 +41,9 @@ install: script: - autoconf && autoheader && ./configure "$BUNDLEDLIBTOM" CFLAGS="-O2 -Wall -Wno-pointer-sign $WEXTRAFLAGS" --prefix="$HOME/inst" - if [ "$NOWRITEV" = "1" ]; then sed -i -e s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h ; fi - - make -j3 install + - make -j3 + # avoid concurrent install, osx/freebsd is racey (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208093) + - make install after_success: - ~/inst/bin/dropbearkey -t rsa -f testrsa |