[geos-commits] [SCM] GEOS branch master updated. 67bdb2e1fbdbc8db4d4bc0d21bd6e3ab6ebe71b0

git at osgeo.org git at osgeo.org
Sun Jun 16 02:29:31 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  67bdb2e1fbdbc8db4d4bc0d21bd6e3ab6ebe71b0 (commit)
      from  2542dfbcbe00220b808df90c1e6e82f44897d923 (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 67bdb2e1fbdbc8db4d4bc0d21bd6e3ab6ebe71b0
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Jun 14 12:23:54 2019 +0200

    Add doxygen-checked command, run it from drone
    
    Checks that doxygen does not output unexpected warnings

diff --git a/.drone-1.0.yml b/.drone-1.0.yml
index d97e8ad..8689d75 100644
--- a/.drone-1.0.yml
+++ b/.drone-1.0.yml
@@ -26,4 +26,4 @@ steps:
   - name: docs
     image: *test-image
     commands:
-      - make doxygen
+      - make doxygen-checked
diff --git a/Makefile.am b/Makefile.am
index 14ab777..3731ec7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -49,6 +49,12 @@ gen-ChangeLog:
 apidoc doxygen:
 	cd doc && make $@
 
+doxygen-checked:
+	( set -o pipefail; \
+		! make doxygen 2>&1 > /dev/null | \
+		grep -v '\(not documented\|ignoring unsupported tag\)'; \
+	)
+
 authors.git: authors.svn
 	cd $(srcdir) && sed -e 's/:/ = /' authors.svn > authors.git
 

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

Summary of changes:
 .drone-1.0.yml | 2 +-
 Makefile.am    | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list