2
0
mirror of https://github.com/spritsail/alpine.git synced 2024-10-08 06:33:54 +00:00
alpine/.drone.yml

37 lines
884 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: spritsail/docker-test
2018-04-17 11:22:52 +00:00
volumes: [ '/var/run/docker.sock:/var/run/docker.sock' ]
repo: alpine-dev
run: su-exec nobody apk --version
2018-04-17 11:22:52 +00:00
publish:
image: spritsail/docker-publish
when: { branch: [ master ], event: [ push, tag, deployment ] }
volumes: [ '/var/run/docker.sock:/var/run/docker.sock' ]
2018-09-22 23:54:15 +00:00
secrets: [ docker_username, docker_password ]
2018-04-17 11:22:52 +00:00
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 ]
tag: ${ALPINE_TAG%%,*}
2018-04-17 11:22:52 +00:00
matrix:
ALPINE_TAG:
2018-06-28 10:51:37 +00:00
- 3.7
2019-01-31 08:58:11 +00:00
- 3.8
2019-06-20 19:43:05 +00:00
- 3.9
- 3.10,latest
2018-04-17 11:22:52 +00:00
- edge