From: Sandro Santilli Date: Thu, 6 Jun 2019 09:47:26 +0000 (+0000) Subject: [dronie] fix yml syntax X-Git-Tag: 2.4.8~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bcf612bac8b9ab5a29dd94393d504cd39d0545c9;p=postgis [dronie] fix yml syntax git-svn-id: http://svn.osgeo.org/postgis/branches/2.4@17475 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/.drone-1.0.yml b/.drone-1.0.yml index 67c15da55..2658e462b 100644 --- a/.drone-1.0.yml +++ b/.drone-1.0.yml @@ -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 '.'` ...