ansible-later/.drone.yml

140 lines
2.3 KiB
YAML
Raw Normal View History

2018-12-19 11:19:07 +01:00
---
kind: pipeline
2019-02-25 17:18:10 +01:00
name: testing
platform:
os: linux
arch: amd64
steps:
- name: python2.7
pull: always
image: python:2.7
commands:
- pip install tox -q
- "tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -q"
depends_on:
- clone
- name: python3.5
pull: always
image: python:3.5
commands:
- pip install tox -q
2019-02-25 18:52:19 +01:00
- "tox -e $(tox -l | grep py35 | xargs | sed 's/ /,/g') -q"
2019-02-25 17:18:10 +01:00
depends_on:
- clone
- name: python3.6
pull: always
image: python:3.6
commands:
- pip install tox -q
2019-02-25 18:52:19 +01:00
- "tox -e $(tox -l | grep py36 | xargs | sed 's/ /,/g') -q"
2019-02-25 17:18:10 +01:00
depends_on:
- clone
- name: python3.7
pull: always
image: python:3.7
commands:
- pip install tox -q
2019-02-25 18:52:19 +01:00
- "tox -e $(tox -l | grep py37 | xargs | sed 's/ /,/g') -q"
2019-02-25 17:18:10 +01:00
depends_on:
- clone
---
kind: pipeline
name: build
platform:
os: linux
arch: amd64
steps:
- name: build
pull: always
image: python:3.7
commands:
- python setup.py sdist bdist_wheel
- name: checksum
pull: always
image: alpine
commands:
- apk add --no-cache coreutils
- "sha256sum -b dist/* > sha256sum.txt"
- name: gpg-sign
pull: always
image: plugins/gpgsign:1
settings:
detach_sign: true
files:
- "dist/*"
key:
from_secret: gpgsign_key
passphrase:
from_secret: gpgsign_passphrase
- name: publish-github
pull: always
image: plugins/github-release
settings:
api_key:
from_secret: github_token
files:
- "dist/*"
- sha256sum.txt
when:
event:
- tag
2019-02-25 18:50:26 +01:00
- name: publish-pypi
pull: always
image: plugins/pypi
settings:
password:
from_secret: pypi_password
repository: https://upload.pypi.org/legacy/
skip_build: true
username:
from_secret: pypi_username
when:
event:
- tag
2019-02-25 17:18:10 +01:00
depends_on:
- testing
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
2018-12-19 11:19:07 +01:00
steps:
2019-02-25 18:52:19 +01:00
- name: matrix
image: plugins/matrix
2019-02-25 17:18:10 +01:00
settings:
homeserver: https://matrix.rknet.org
password:
from_secret: matrix_password
roomid: MtidqQXWWAtQcByBhH:rknet.org
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
username:
from_secret: matrix_username
trigger:
status:
- success
- failure
- skipped
2019-02-25 17:18:10 +01:00
depends_on:
- build
...