From: Vitaly Chikunov Date: Sun, 2 Feb 2020 19:04:45 +0000 (+0300) Subject: travis-ci: Fix build on 'OpenSSL_1_1_1-stable' X-Git-Tag: v3.0.0~211 X-Git-Url: http://www.wagner.pp.ru/gitweb/?a=commitdiff_plain;h=c0eadfee19963e68a96f8a7720d39d262a34005d;p=openssl-gost%2Fengine.git travis-ci: Fix build on 'OpenSSL_1_1_1-stable' It's turned out that 'OpenSSL_1_1_1-stable' does not have 'build_sw' make target. But both 'OpenSSL_1_1_1-stable' and 'master' have 'build_libs' and 'build_programs'. Fixes: cb1b5ff ("travis-ci: Speed-up openssl build") --- diff --git a/.travis.yml b/.travis.yml index 4dff6b5..e3eb43c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,7 +65,8 @@ before_script: - cd openssl - git describe --always --long - $SETARCH ./config shared -d --prefix=${PREFIX} --openssldir=${PREFIX} -Wl,-rpath=${PREFIX}/lib - - travis_wait $SETARCH make -s -j$(nproc) build_sw + - travis_wait $SETARCH make -s -j$(nproc) build_libs + - travis_wait $SETARCH make -s -j$(nproc) build_programs - make -s install_sw - cd ..