postgis/.drone-1.0.yml

31 lines
731 B
YAML

# This is for the drone 1.0 agent
# https://docs.drone.io/user-guide/pipeline/steps/
# https://dronie.osgeo.org #1.0 server
# 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.osgeo.org/postgis/build-test:trisquel2
clone: &clone
image: plugins/git
depth: 50
recursive: false
kind: pipeline
name: build
clone: *clone
steps:
- name: autogen
image: *test-image
pull: always
commands:
- ./autogen.sh
depends_on: [ clone ]
- name: build-13
image: *test-image
pull: never
commands:
- PGVER=13 sh ci/dronie/postgis_regress.sh
depends_on: [ autogen ]