2018-12-19 10:19:07 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-02-25 16:18:10 +00: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 17:52:19 +00:00
|
|
|
- "tox -e $(tox -l | grep py35 | xargs | sed 's/ /,/g') -q"
|
2019-02-25 16:18:10 +00:00
|
|
|
depends_on:
|
|
|
|
- clone
|
|
|
|
|
|
|
|
- name: python3.6
|
|
|
|
pull: always
|
|
|
|
image: python:3.6
|
|
|
|
commands:
|
|
|
|
- pip install tox -q
|
2019-02-25 17:52:19 +00:00
|
|
|
- "tox -e $(tox -l | grep py36 | xargs | sed 's/ /,/g') -q"
|
2019-02-25 16:18:10 +00:00
|
|
|
depends_on:
|
|
|
|
- clone
|
|
|
|
|
|
|
|
- name: python3.7
|
|
|
|
pull: always
|
|
|
|
image: python:3.7
|
|
|
|
commands:
|
|
|
|
- pip install tox -q
|
2019-02-25 17:52:19 +00:00
|
|
|
- "tox -e $(tox -l | grep py37 | xargs | sed 's/ /,/g') -q"
|
2019-02-25 16:18:10 +00: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 17:50:26 +00: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 16:18:10 +00:00
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- testing
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notifications
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
2018-12-19 10:19:07 +00:00
|
|
|
|
|
|
|
steps:
|
2019-02-25 17:52:19 +00:00
|
|
|
- name: matrix
|
|
|
|
image: plugins/matrix
|
2019-02-25 16:18:10 +00: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:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
|
|
|
...
|