[geos-commits] r4239 - trunk

Sandro Santilli strk at kbt.io
Thu Jul 21 11:20:41 PDT 2016


Author: strk
Date: 2016-07-21 11:20:41 -0700 (Thu, 21 Jul 2016)
New Revision: 4239

Modified:
   trunk/.drone.yml
Log:
Turn off optimization while building, reduce clone depth

Modified: trunk/.drone.yml
===================================================================
--- trunk/.drone.yml	2016-07-19 18:31:15 UTC (rev 4238)
+++ trunk/.drone.yml	2016-07-21 18:20:41 UTC (rev 4239)
@@ -1,9 +1,20 @@
-# See http://readme.drone.io/usage/overview
+# See http://readme.drone.io/0.5/usage/overview
+
+# See https://git.osgeo.org/gogs/geos/geos/docker/build-test
+test-image: &test-image docker.kbt.io/geos/build-test:alpine
+
 pipeline:
+  clone:
+    image: git
+    depth: 50
+    recursive: false
   build:
-    image: docker.kbt.io/geos/build-test:alpine
+    image: &test-image
     commands:
       - ./autogen.sh
-      - ./configure
+      - CXXFLAGS="-O0 -Werror" ./configure
       - make
-      - make check
+  check:
+    image: &test-image
+    commands:
+      - CXXFLAGS="-O0 -Werror" make distcheck



More information about the geos-commits mailing list