alpine/.drone.yml

35 lines
869 B
YAML
Raw Normal View History

2018-04-17 11:22:52 +00:00
pipeline:
build:
image: spritsail/docker-build
volumes: [ '/var/run/docker.sock:/var/run/docker.sock' ]
repo: alpine-dev
build_args:
- ALPINE_TAG=${ALPINE_TAG%%,*}
2018-04-17 11:22:52 +00:00
test:
image: docker
volumes: [ '/var/run/docker.sock:/var/run/docker.sock' ]
commands:
- docker run --rm alpine-dev /bin/sh -xec 'apk --version'
publish:
image: spritsail/docker-publish
when: { branch: [ master ], event: [ push, tag, deployment ] }
volumes: [ '/var/run/docker.sock:/var/run/docker.sock' ]
secrets: [ docker_username, docker_password, microbadger_token ]
from: alpine-dev
repo: 'spritsail/alpine'
tags: ${ALPINE_TAG}
2018-04-17 11:22:52 +00:00
notify:
image: spritsail/notify
when: { status: [ success, failure ] }
secrets: [ webhook_url, notify_token ]
matrix:
ALPINE_TAG:
- 3.6
2018-06-28 10:51:37 +00:00
- 3.7
- 3.8,latest
2018-04-17 11:22:52 +00:00
- edge