[geos-commits] [SCM] GEOS branch master updated. a5bf88a6bd882209a3e2bb78c54b4886988d51bb

git at osgeo.org git at osgeo.org
Sat May 25 02:41:06 PDT 2019


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".

The branch, master has been updated
       via  a5bf88a6bd882209a3e2bb78c54b4886988d51bb (commit)
      from  89a3277e7be971352eddfbc53f3050f9296af1a1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a5bf88a6bd882209a3e2bb78c54b4886988d51bb
Author: Sandro Santilli <strk at kbt.io>
Date:   Sat May 25 11:39:40 2019 +0200

    [automake] Enable silent rule, use in Dronie and Gitlab-CI

diff --git a/.drone-1.0.yml b/.drone-1.0.yml
index e2e74e7..c3ca94e 100644
--- a/.drone-1.0.yml
+++ b/.drone-1.0.yml
@@ -17,8 +17,8 @@ steps:
     commands:
       - ./autogen.sh
       - CXXFLAGS="-O0" ./configure
-      - make
+      - make V=0
   - name: check
     image: *test-image
     commands:
-      - CXXFLAGS="-O0" make check
+      - CXXFLAGS="-O0" make check V=0
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2df15c0..c0ce10c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,7 +8,7 @@ test:
   script:
     - ./autogen.sh
     - ./configure
-    - make
-    - make check
+    - make V=0
+    - make check V=0
     - install -m 755 /bin/true /usr/local/bin/git2cl
     - make distcheck
diff --git a/configure.ac b/configure.ac
index 0ea9689..5067088 100644
--- a/configure.ac
+++ b/configure.ac
@@ -43,6 +43,7 @@ AC_MSG_RESULT(["$CAPI_VERSION"])
 
 AM_INIT_AUTOMAKE([geos], [$VERSION], [no-define])
 AM_MAINTAINER_MODE
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
 AC_CONFIG_HEADERS([include/config.h])
 AC_PROG_CC
 

-----------------------------------------------------------------------

Summary of changes:
 .drone-1.0.yml | 4 ++--
 .gitlab-ci.yml | 4 ++--
 configure.ac   | 1 +
 3 files changed, 5 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list