atheme-docker/.drone.yml

52 lines
1 KiB
YAML
Raw Normal View History

2020-03-01 00:17:44 -08:00
---
kind: pipeline
name: default
steps:
- name: "set image tags (normal build)"
image: alpine
environment:
VERSION: "7.2.10-r2"
commands:
- "./write-tags.sh $VERSION > .tags"
2020-03-01 00:26:30 -08:00
- "# Will build the following tags:"
2020-03-01 00:17:44 -08:00
- "cat .tags"
- name: "build docker image"
image: plugins/docker
settings:
repo: ovdnet/atheme
username:
from_secret: docker_user
password:
from_secret: docker_password
build_args:
2020-03-01 00:26:30 -08:00
- ATHEME_VERSION=7.2.10-r2
2020-03-01 00:17:44 -08:00
trigger:
branch:
- master
- name: "set image tags (build with contrib)"
image: alpine
environment:
VERSION: "7.2.10-r2"
commands:
- "./write-tags.sh $VERSION contrib > .tags"
2020-03-01 00:26:30 -08:00
- "# Will build the following tags:"
2020-03-01 00:17:44 -08:00
- "cat .tags"
- name: "build docker image (contrib)"
image: plugins/docker
settings:
repo: ovdnet/atheme
username:
from_secret: docker_user
password:
from_secret: docker_password
build_args:
2020-03-01 00:26:30 -08:00
- ATHEME_VERSION=7.2.10-r2
2020-03-01 00:17:44 -08:00
- BUILD_CONTRIB_MODULES=true
trigger:
branch:
- master