]> granicus.if.org Git - postgis/commitdiff
[dronie] fix yml syntax
authorSandro Santilli <strk@kbt.io>
Thu, 6 Jun 2019 09:47:26 +0000 (09:47 +0000)
committerSandro Santilli <strk@kbt.io>
Thu, 6 Jun 2019 09:47:26 +0000 (09:47 +0000)
git-svn-id: http://svn.osgeo.org/postgis/branches/2.4@17475 b70326c6-7e19-0410-871a-916f4a2858ee

.drone-1.0.yml

index 67c15da557089a6cacdaf1d9319f4c3773ece524..2658e462b0e10e610f2827e77452920af3cee8a0 100644 (file)
@@ -4,7 +4,6 @@
 
 # See https://git.osgeo.org/gitea/postgis/postgis-docker
 # todo: add docker images from https://hub.docker.com/r/postgis/postgis-build-env/tags/
-
 test-image: &test-image docker.kbt.io/postgis/build-test:trisquel2
 kind: pipeline
 name: pg-9.3
@@ -25,12 +24,9 @@ steps:
       - psql -c "select version()" template1
       - make check RUNTESTFLAGS=-v
       - make install
-      - utils/check_all_upgrades.sh
+      - utils/check_all_upgrades.sh -s
         `grep '^POSTGIS_' Version.config | cut -d= -f2 | paste -sd '.'`
-
---
-
-
+---
 test-image: &test-image docker.kbt.io/postgis/build-test:trisquel2
 kind: pipeline
 name: pg-9.4
@@ -51,11 +47,9 @@ steps:
       - psql -c "select version()" template1
       - make check RUNTESTFLAGS=-v
       - make install
-      - utils/check_all_upgrades.sh
+      - utils/check_all_upgrades.sh -s
         `grep '^POSTGIS_' Version.config | cut -d= -f2 | paste -sd '.'`
-
---
-
+---
 test-image: &test-image docker.kbt.io/postgis/build-test:trisquel2
 kind: pipeline
 name: pg-9.5
@@ -76,11 +70,9 @@ steps:
       - psql -c "select version()" template1
       - make check RUNTESTFLAGS=-v
       - make install
-      - utils/check_all_upgrades.sh
+      - utils/check_all_upgrades.sh -s
         `grep '^POSTGIS_' Version.config | cut -d= -f2 | paste -sd '.'`
-
 ---
-
 test-image: &test-image docker.kbt.io/postgis/build-test:trisquel2
 kind: pipeline
 name: pg-9.6
@@ -101,11 +93,9 @@ steps:
       - psql -c "select version()" template1
       - make check RUNTESTFLAGS=-v
       - make install
-      - utils/check_all_upgrades.sh
+      - utils/check_all_upgrades.sh -s
         `grep '^POSTGIS_' Version.config | cut -d= -f2 | paste -sd '.'`
-
 ---
-
 test-image: &test-image docker.kbt.io/postgis/build-test:trisquel2
 kind: pipeline
 name: pg-10
@@ -126,6 +116,6 @@ steps:
       - psql -c "select version()" template1
       - make check RUNTESTFLAGS=-v
       - make install
-      - utils/check_all_upgrades.sh
+      - utils/check_all_upgrades.sh -s
         `grep '^POSTGIS_' Version.config | cut -d= -f2 | paste -sd '.'`
 ...