commit 6ba74b15e1beae4526cbe8a73411be9acf25e21b
parent 348e57528018d5b93e8d7e81d622d553c4a86401
Author: Rolf Eike Beer <eike@sf-mail.de>
Date: Tue, 19 May 2020 21:00:42 +0200
CI: make the NROFF tests to actually override nroff
These things just set environment variables, but since they were note exported
they were not visible to make, so nothing actually changed.
Diffstat:
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/.cirrus.yml b/.cirrus.yml
@@ -9,17 +9,16 @@ task:
env:
matrix:
- MAKE_FLAGS: -j 2
- - MAKE_FLAGS: -j 2
- NROFF: true
+ - MAKE_FLAGS: "-j 2 NROFF=true"
pkginstall_script:
- pkg install -y groff pkgconf check
configure_script:
- echo "clang -O2 -Wall -Wshadow" > conf-cc
compile_script:
- - make it man
+ - make ${MAKE_FLAGS} it man
test_script:
- - make test
+ - make ${MAKE_FLAGS} test
install_script:
- env DESTDIR=/tmp/qmail make package
- make package
diff --git a/.travis.yml b/.travis.yml
@@ -4,7 +4,7 @@ env:
matrix:
- BUILD_NAME="default"
- BUILD_NAME="utmp" FORCE_UTMP="1" MAKEFLAGS="-o qtmp.h"
- - BUILD_NAME="no_catman" NROFF=true
+ - BUILD_NAME="no_catman" MAKEFLAGS="NROFF=true"
compiler:
- gcc
- clang