[geos-commits] [SCM] GEOS branch main updated. d48d7fc02968b6a12f93afb9cd1ae74b3cd24fdf
git at osgeo.org
git at osgeo.org
Mon Dec 1 18:44:58 PST 2025
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, main has been updated
via d48d7fc02968b6a12f93afb9cd1ae74b3cd24fdf (commit)
from c2a1d40c2d86f0b6f8028d4965ffa2aef79473d7 (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 d48d7fc02968b6a12f93afb9cd1ae74b3cd24fdf
Author: Mike Taves <mwtoews at gmail.com>
Date: Tue Dec 2 15:39:54 2025 +1300
Cleanup old scripts used for Travis CI (RIP)
diff --git a/tools/ci/common.sh b/tools/ci/common.sh
deleted file mode 100755
index 08c065162..000000000
--- a/tools/ci/common.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-#
-# Common utilities for Travis CI setup for GEOS
-#
-# Copyright (c) 2013 Mateusz Loskot <mateusz at loskot.net>
-#
-# 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.
-#
-if [ "$TRAVIS" != "true" ] ; then
- echo "Running this script makes no sense outside of travis-ci.org"
- exit 1
-fi
-#
-# Environment
-#
-TCI_NUMTHREADS=2
-if [ -f /sys/devices/system/cpu/online ]; then
- # Calculates 1.5 times physical threads
- TCI_NUMTHREADS=$(( ( $(cut -f 2 -d '-' /sys/devices/system/cpu/online) + 1 ) * 15 / 10 ))
-fi
-#
-# Functions
-#
-tmstamp()
-{
- echo -n "[$(date '+%H:%M:%S')]" ;
-}
-
-run_make()
-{
- [ $TCI_NUMTHREADS -gt 0 ] && make -j $TCI_NUMTHREADS || make
-}
diff --git a/tools/ci/script.sh b/tools/ci/script.sh
deleted file mode 100755
index 5b9e75d35..000000000
--- a/tools/ci/script.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-#
-# Travis CI script runner for GEOS
-#
-# Copyright (c) 2013 Mateusz Loskot <mateusz at loskot.net>
-#
-# 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.
-#
-
-if [ -z "${TRAVIS_BUILD_DIR+x}" ]; then
- echo TRAVIS_BUILD_DIR not defined
- exit 1
-fi
-
-# source common functions
-. ${TRAVIS_BUILD_DIR}/tools/ci/common.sh
-
-# prepare build directory
-builddir=${TRAVIS_BUILD_DIR}/_build
-mkdir -p ${builddir}
-cd ${builddir}
-
-# build and run tests
-${TRAVIS_BUILD_DIR}/tools/ci/script_cmake.sh
diff --git a/tools/ci/script_cmake.sh b/tools/ci/script_cmake.sh
deleted file mode 100755
index b5a173ee9..000000000
--- a/tools/ci/script_cmake.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-#
-# Travis CI script for GEOS build with CMake
-#
-# Copyright (C) 2013 Mateusz Loskot <mateusz at loskot.net>
-#
-# 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.
-#
-
-if [ -z "${TRAVIS_BUILD_DIR+x}" ]; then
- echo TRAVIS_BUILD_DIR not defined
- exit 1
-fi
-
-# source common functions
-. ${TRAVIS_BUILD_DIR}/tools/ci/common.sh
-
-# return on first failure
-set -e
-
-cmake --version
-
-cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DBUILD_DOCUMENTATION=YES ${TRAVIS_BUILD_DIR}
-run_make
-cmake --build . --target docs
-ctest --output-on-failure .
-
-if [ "${BUILD_TYPE}" = "Coverage" ]; then
- curl -o codecov.sh https://codecov.io/bash
- bash codecov.sh
-fi
-----------------------------------------------------------------------
Summary of changes:
tools/ci/common.sh | 35 -----------------------------------
tools/ci/script.sh | 27 ---------------------------
tools/ci/script_cmake.sh | 34 ----------------------------------
3 files changed, 96 deletions(-)
delete mode 100755 tools/ci/common.sh
delete mode 100755 tools/ci/script.sh
delete mode 100755 tools/ci/script_cmake.sh
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list