[geos-commits] [SCM] GEOS branch svn-3.6 updated. 6775f76a442435d45662d20c2e93bb3fe56ba7dd
git at osgeo.org
git at osgeo.org
Wed Apr 22 10:51:41 PDT 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, svn-3.6 has been updated
via 6775f76a442435d45662d20c2e93bb3fe56ba7dd (commit)
from ba90ca5e1a5a1091822d376f83fe635694ca3469 (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 6775f76a442435d45662d20c2e93bb3fe56ba7dd
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Apr 22 19:51:06 2020 +0200
[drone] Enable for the branch
diff --git a/.drone-1.0.yml b/.drone-1.0.yml
new file mode 100644
index 0000000..66c1a6f
--- /dev/null
+++ b/.drone-1.0.yml
@@ -0,0 +1,29 @@
+# This is for the dronie 1.0 agent
+# https://docs.drone.io/user-guide/pipeline/steps/ https://docs.drone.io/user-guide/pipeline/migrating/
+# See https://git.osgeo.org/gitea/geos/geos-docker
+test-image: &test-image docker.osgeo.org/geos/build-test:alpine
+
+kind: pipeline
+name: default
+
+clone:
+ image: plugins/git
+ depth: 50
+ recursive: false
+
+steps:
+ - name: build
+ image: *test-image
+ pull: always
+ commands:
+ - ./autogen.sh
+ - CXXFLAGS="-O0" ./configure
+ - make
+ - name: check
+ image: *test-image
+ commands:
+ - CXXFLAGS="-O0" make check V=0
+ - name: docs
+ image: *test-image
+ commands:
+ - make doxygen
diff --git a/.drone.yml b/.drone.yml
deleted file mode 100644
index 1addc51..0000000
--- a/.drone.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-# See http://readme.drone.io/0.5/usage/overview
-
-# See https://git.osgeo.org/gogs/geos/geos-docker
-test-image: &test-image docker.kbt.io/geos/build-test:alpine
-
-pipeline:
- clone:
- image: plugins/git
- depth: 50
- recursive: false
- build:
- image: *test-image
- commands:
- - ./autogen.sh
- - CXXFLAGS="-O0" ./configure
- - make
- check:
- image: *test-image
- commands:
- - CXXFLAGS="-O0" make check
-----------------------------------------------------------------------
Summary of changes:
.drone-1.0.yml | 29 +++++++++++++++++++++++++++++
.drone.yml | 20 --------------------
2 files changed, 29 insertions(+), 20 deletions(-)
create mode 100644 .drone-1.0.yml
delete mode 100644 .drone.yml
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list