summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-02-27 02:07:50 +0100
committerRichard Levitte <levitte@openssl.org>2020-03-02 03:34:30 +0100
commit97ace6c2dae451ce8e3b099cf242968ecff128af (patch)
tree644d89a0f26a4f3dfaba0738f261117a25f27db6 /.travis.yml
parentfe909ee4aeb6eb64f6f31a1544c5d3c81c5fe1f1 (diff)
downloadopenssl-new-97ace6c2dae451ce8e3b099cf242968ecff128af.tar.gz
.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 <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11185)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
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