From: Richard Levitte Date: Thu, 27 Feb 2020 01:07:50 +0000 (+0100) Subject: .travis.yml: Remove NOUPDATE support X-Git-Tag: openssl-3.0.0-alpha1~340 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=97ace6c2dae451ce8e3b099cf242968ecff128af;p=oweals%2Fopenssl.git .travis.yml: Remove NOUPDATE support It was a temporary measure to deal with the fact that util/progs.pl didn't work right at all times, but that has now been fixed. Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/11185) --- diff --git a/.travis.yml b/.travis.yml index b6d698ae76..a015eb4053 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,7 +65,7 @@ matrix: - os: linux arch: arm64 compiler: gcc - env: CONFIG_OPTS="no-asm no-deprecated enable-buildtest-c++ --strict-warnings -D_DEFAULT_SOURCE" BUILDONLY="yes" NOUPDATE="yes" CHECKDOCS="yes" CPPFLAGS="-ansi" + env: CONFIG_OPTS="no-asm no-deprecated enable-buildtest-c++ --strict-warnings -D_DEFAULT_SOURCE" BUILDONLY="yes" CHECKDOCS="yes" CPPFLAGS="-ansi" - os: linux arch: s390x compiler: gcc @@ -212,7 +212,7 @@ script: - if [ -n "$DESTDIR" ]; then cd _build; fi - - if [ -z "$NOUPDATE" ] && ! $make update; then + - if ! $make update; then echo -e '\052\052 FAILED -- MAKE UPDATE'; travis_terminate 1; fi