[postgis-tickets] r17756 - [gitlab-ci] Use env variable rather than make parameter, for RUNTESTFLAGS
Sandro Santilli
strk at kbt.io
Thu Aug 22 04:44:26 PDT 2019
Author: strk
Date: 2019-08-22 04:44:26 -0700 (Thu, 22 Aug 2019)
New Revision: 17756
Modified:
trunk/.gitlab-ci.yml
Log:
[gitlab-ci] Use env variable rather than make parameter, for RUNTESTFLAGS
I suspect gitlab-ci provided make is not compatible with parameter
Modified: trunk/.gitlab-ci.yml
===================================================================
--- trunk/.gitlab-ci.yml 2019-08-22 09:21:08 UTC (rev 17755)
+++ trunk/.gitlab-ci.yml 2019-08-22 11:44:26 UTC (rev 17756)
@@ -17,8 +17,8 @@
- ./autogen.sh
- ./configure CFLAGS="-Wall -fno-omit-frame-pointer -Werror"
- make
- - make check RUNTESTFLAGS=-v
- - make check RUNTESTFLAGS="-v --dumprestore"
+ - RUNTESTFLAGS=-v make check
+ - RUNTESTFLAGS="-v --dumprestore" make check
- make install
- - make installcheck RUNTESTFLAGS=-v
- - make installcheck RUNTESTFLAGS="-v --dumprestore"
+ - RUNTESTFLAGS=-v make installcheck
+ - RUNTESTFLAGS="-v --dumprestore" make installcheck
More information about the postgis-tickets
mailing list