[geos-commits] [SCM] GEOS branch master updated. ba24e3e294f39414bdb0290d07f673443bfe4b37
git at osgeo.org
git at osgeo.org
Sat Mar 7 12:06:10 PST 2020
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 ba24e3e294f39414bdb0290d07f673443bfe4b37 (commit)
from e37d04f8384b2e1fee83d64c6221adc3749a404a (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 ba24e3e294f39414bdb0290d07f673443bfe4b37
Author: Regina Obe <lr at pcorp.us>
Date: Sat Mar 7 15:06:03 2020 -0500
Add berrie to jenkins slavebot worker runs - references #1017 for GEOS 3.9
diff --git a/NEWS b/NEWS
index 24b6a46..6c36595 100644
--- a/NEWS
+++ b/NEWS
@@ -10,6 +10,7 @@ Changes in 3.9.0
- Update geos-config tool for consistency
and escape paths (https://git.osgeo.org/gitea/geos/geos/pulls/99)
changes mostly affect CMake MSVC builds (#1015, Mike Taves)
+ - Testing on Rasberry Pi 32-bit (berrie) (#1017, Bruce Rindahl, Regina Obe)
Changes in 3.8.0
diff --git a/tools/ci/berrie.sh b/tools/ci/berrie.sh
new file mode 100644
index 0000000..3655b38
--- /dev/null
+++ b/tools/ci/berrie.sh
@@ -0,0 +1,31 @@
+#!/bin/sh
+#
+# Raspberry Pi (berrie) CI script runner for GEOS
+#
+# Copyright (c) 2018 Regina Obe <lr at pcorp.us>
+#
+# This is free software; you can redistribute and/or modify it under
+# the terms of the GNU Lesser General Public Licence as published
+# by the Free Software Foundation.
+# See the COPYING file for more information.
+#
+# auto tools
+if true; then
+ sh autogen.sh
+ ./configure
+ make
+ make check
+fi
+
+
+# cmake
+if false; then
+ rm -rf build
+ mkdir -p build
+ cd build
+ cmake ../
+ make
+ [ -f CMakeCache.txt ] && \
+ ctest --output-on-failure . || \
+ make check
+fi
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 +
tools/ci/{bessie.sh => berrie.sh} | 6 +++---
2 files changed, 4 insertions(+), 3 deletions(-)
copy tools/ci/{bessie.sh => berrie.sh} (91%)
mode change 100755 => 100644
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list