[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-309-gd3f7885d8
git at osgeo.org
git at osgeo.org
Wed Sep 6 08:04:13 PDT 2023
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 "PostGIS".
The branch, master has been updated
via d3f7885d82baf21bf7041ce4b1c58f07beba55cd (commit)
from 46762f988e7e45f5fc04a6df527bf687a85ec8b1 (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 d3f7885d82baf21bf7041ce4b1c58f07beba55cd
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Sep 6 17:00:55 2023 +0200
Add a `check-lint` Makefile target
Allows running lint tests in isolation from the rest.
This is because linting does not depend on PostgreSQL version
so we could avoid running it for all versions in CI
[CI skip]
diff --git a/GNUmakefile.in b/GNUmakefile.in
index e6ba14332..38aaf1221 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -65,12 +65,16 @@ clean-local:
# TODO: drop 'test' target..
test: check
-check: check-no-trailing-blanks check-unit docs-check check-news check-tests-enabled check-lang-enabled
+check: check-unit docs-check check-lint
ifeq (@LIBLWGEOM_ONLY@,no)
check: check-regress
endif
+# The "lint" tests do not depend on specific code configurations
+# but solely on the source code state
+check-lint: check-no-trailing-blanks check-news check-tests-enabled check-lang-enabled
+
staged-install: all
$(MAKE) -C regress staged-install
-----------------------------------------------------------------------
Summary of changes:
GNUmakefile.in | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list