]> www.wagner.pp.ru Git - openssl-gost/engine.git/commitdiff
travis-ci: Fix build on 'OpenSSL_1_1_1-stable'
authorVitaly Chikunov <vt@altlinux.org>
Sun, 2 Feb 2020 19:04:45 +0000 (22:04 +0300)
committerDmitry Belyavskiy <beldmit@users.noreply.github.com>
Sun, 2 Feb 2020 19:46:04 +0000 (22:46 +0300)
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")
.travis.yml

index 4dff6b59b6c25ad3d932ff14263547f765dda787..e3eb43caa77de8a3c3550f89e60d6f5fe277cf7e 100644 (file)
@@ -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 ..