mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-22 12:50:42 +00:00
convert drone config to jsonnet
This commit is contained in:
parent
2986f8771e
commit
6e16426709
153
.drone.1.yml
Normal file
153
.drone.1.yml
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: test2.7
|
||||||
|
image: python:2.7-stretch
|
||||||
|
pull: always
|
||||||
|
environment:
|
||||||
|
PY_COLORS: "1"
|
||||||
|
commands:
|
||||||
|
- pip install tox -q
|
||||||
|
- tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -q
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: test3.5
|
||||||
|
image: python:3.5-stretch
|
||||||
|
pull: always
|
||||||
|
environment:
|
||||||
|
PY_COLORS: "1"
|
||||||
|
commands:
|
||||||
|
- pip install tox -q
|
||||||
|
- tox -e $(tox -l | grep py35 | xargs | sed 's/ /,/g') -q
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: test3.6
|
||||||
|
image: python:3.6-stretch
|
||||||
|
pull: always
|
||||||
|
environment:
|
||||||
|
PY_COLORS: "1"
|
||||||
|
commands:
|
||||||
|
- pip install tox -q
|
||||||
|
- tox -e $(tox -l | grep py36 | xargs | sed 's/ /,/g') -q
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: test3.7
|
||||||
|
image: python:3.7-stretch
|
||||||
|
pull: always
|
||||||
|
environment:
|
||||||
|
PY_COLORS: "1"
|
||||||
|
commands:
|
||||||
|
- pip install tox -q
|
||||||
|
- tox -e $(tox -l | grep py37 | xargs | sed 's/ /,/g') -q
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: build
|
||||||
|
image: python:3.7-alpine
|
||||||
|
pull: true
|
||||||
|
commands:
|
||||||
|
- python setup.py sdist bdist_wheel
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
depends_on:
|
||||||
|
- test2.7
|
||||||
|
- test3.5
|
||||||
|
- test3.6
|
||||||
|
- test3.7
|
||||||
|
|
||||||
|
- name: checksum
|
||||||
|
image: alpine
|
||||||
|
pull: always
|
||||||
|
commands:
|
||||||
|
- apk add --no-cache coreutils
|
||||||
|
# exclude files
|
||||||
|
# - sha256sum -b files/!(*.out) > CHECKSUMFILE
|
||||||
|
- sha256sum -b dist/* > sha256sum.txt
|
||||||
|
depends_on:
|
||||||
|
- build
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: gpgsign
|
||||||
|
image: plugins/gpgsign:1
|
||||||
|
pull: always
|
||||||
|
settings:
|
||||||
|
key:
|
||||||
|
from_secret: gpgsign_key
|
||||||
|
passphrase:
|
||||||
|
from_secret: gpgsign_passphrase
|
||||||
|
detach_sign: true
|
||||||
|
files:
|
||||||
|
- dist/*
|
||||||
|
depends_on:
|
||||||
|
- checksum
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: publish
|
||||||
|
image: plugins/github-release
|
||||||
|
settings:
|
||||||
|
api_key:
|
||||||
|
from_secret: github_token
|
||||||
|
files:
|
||||||
|
- dist/*
|
||||||
|
- sha256sum.txt
|
||||||
|
title: $${DRONE_TAG}
|
||||||
|
note: CHANGELOG.md
|
||||||
|
depends_on:
|
||||||
|
- gpgsign
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: pypi_publish
|
||||||
|
image: xoxys/drone-pypi:0.1.0
|
||||||
|
pull: always
|
||||||
|
settings:
|
||||||
|
username:
|
||||||
|
from_secret: pypi_username
|
||||||
|
password:
|
||||||
|
from_secret: pypi_password
|
||||||
|
repository: https://upload.pypi.org/legacy/
|
||||||
|
skip_build: true
|
||||||
|
depends_on:
|
||||||
|
- publish
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: notify
|
||||||
|
image: plugins/matrix
|
||||||
|
settings:
|
||||||
|
homeserver: https://matrix.rknet.org
|
||||||
|
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
|
||||||
|
password:
|
||||||
|
from_secret: matrix_password
|
||||||
|
depends_on:
|
||||||
|
- pypi_publish
|
||||||
|
when:
|
||||||
|
status:
|
||||||
|
- success
|
||||||
|
- failure
|
129
.drone.jsonnet
Normal file
129
.drone.jsonnet
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
local PythonVersions(pyversion="2.7", py="27") = {
|
||||||
|
name: "python" + pyversion,
|
||||||
|
image: "python:" + pyversion,
|
||||||
|
pull: "always",
|
||||||
|
commands: [
|
||||||
|
"pip install tox -q",
|
||||||
|
"tox -e $(tox -l | grep py" + py + " | xargs | sed 's/ /,/g') -q",
|
||||||
|
],
|
||||||
|
depends_on: [
|
||||||
|
"clone",
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
local PipelineTesting = {
|
||||||
|
kind: "pipeline",
|
||||||
|
name: "testing",
|
||||||
|
platform: {
|
||||||
|
os: "linux",
|
||||||
|
arch: "amd64",
|
||||||
|
},
|
||||||
|
steps: [
|
||||||
|
PythonVersions(pyversion="2.7"),
|
||||||
|
PythonVersions(pyversion="3.5"),
|
||||||
|
PythonVersions(pyversion="3.6"),
|
||||||
|
PythonVersions(pyversion="3.7"),
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
local PipelineBuild = {
|
||||||
|
kind: "pipeline",
|
||||||
|
name: "build",
|
||||||
|
platform: {
|
||||||
|
os: "linux",
|
||||||
|
arch: "amd64",
|
||||||
|
},
|
||||||
|
steps: [
|
||||||
|
{
|
||||||
|
name: "build",
|
||||||
|
image: "python:3.7",
|
||||||
|
pull: "always",
|
||||||
|
commands: [
|
||||||
|
"python setup.py sdist bdist_wheel",
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "checksum",
|
||||||
|
image: "alpine",
|
||||||
|
pull: "always",
|
||||||
|
commands: [
|
||||||
|
"apk add --no-cache coreutils",
|
||||||
|
"sha256sum -b dist/* > sha256sum.txt"
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "gpg-sign",
|
||||||
|
image: "plugins/gpgsign:1",
|
||||||
|
pull: "always",
|
||||||
|
settings: {
|
||||||
|
key: { "from_secret": "gpgsign_key" },
|
||||||
|
passphrase: { "from_secret": "gpgsign_passphrase" },
|
||||||
|
detach_sign: true,
|
||||||
|
files: [ "dist/*" ],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "publish-github",
|
||||||
|
image: "plugins/github-release",
|
||||||
|
pull: "always",
|
||||||
|
settings: {
|
||||||
|
api_key: { "from_secret": "github_token"},
|
||||||
|
files: ["dist/*", "sha256sum.txt"],
|
||||||
|
},
|
||||||
|
when: {
|
||||||
|
event: [ "tag" ],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "publish-pypi",
|
||||||
|
image: "plugins/pypi",
|
||||||
|
pull: "always",
|
||||||
|
settings: {
|
||||||
|
username: { "from_secret": "pypi_username" },
|
||||||
|
password: { "from_secret": "pypi_password" },
|
||||||
|
repository: "https://upload.pypi.org/legacy/",
|
||||||
|
skip_build: true
|
||||||
|
},
|
||||||
|
when: {
|
||||||
|
event: [ "tag" ],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
depends_on: [
|
||||||
|
"testing",
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
local PipelineNotifications = {
|
||||||
|
kind: "pipeline",
|
||||||
|
name: "notifications",
|
||||||
|
platform: {
|
||||||
|
os: "linux",
|
||||||
|
arch: "amd64",
|
||||||
|
},
|
||||||
|
steps: [
|
||||||
|
{
|
||||||
|
image: "plugins/matrix",
|
||||||
|
settings: {
|
||||||
|
homeserver: "https://matrix.rknet.org",
|
||||||
|
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" },
|
||||||
|
password: { "from_secret": "matrix_password" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
depends_on: [
|
||||||
|
"build",
|
||||||
|
],
|
||||||
|
trigger: {
|
||||||
|
event: [ "push", "tag" ],
|
||||||
|
status: [ "success", "failure" ],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
[
|
||||||
|
PipelineTesting,
|
||||||
|
PipelineBuild,
|
||||||
|
PipelineNotifications,
|
||||||
|
]
|
267
.drone.yml
267
.drone.yml
@ -1,153 +1,140 @@
|
|||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: default
|
name: testing
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: test2.7
|
- name: python2.7
|
||||||
image: python:2.7-stretch
|
pull: always
|
||||||
pull: always
|
image: python:2.7
|
||||||
environment:
|
commands:
|
||||||
PY_COLORS: "1"
|
- pip install tox -q
|
||||||
commands:
|
- "tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -q"
|
||||||
- pip install tox -q
|
depends_on:
|
||||||
- tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -q
|
- clone
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: test3.5
|
- name: python3.5
|
||||||
image: python:3.5-stretch
|
pull: always
|
||||||
pull: always
|
image: python:3.5
|
||||||
environment:
|
commands:
|
||||||
PY_COLORS: "1"
|
- pip install tox -q
|
||||||
commands:
|
- "tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -q"
|
||||||
- pip install tox -q
|
depends_on:
|
||||||
- tox -e $(tox -l | grep py35 | xargs | sed 's/ /,/g') -q
|
- clone
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: test3.6
|
- name: python3.6
|
||||||
image: python:3.6-stretch
|
pull: always
|
||||||
pull: always
|
image: python:3.6
|
||||||
environment:
|
commands:
|
||||||
PY_COLORS: "1"
|
- pip install tox -q
|
||||||
commands:
|
- "tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -q"
|
||||||
- pip install tox -q
|
depends_on:
|
||||||
- tox -e $(tox -l | grep py36 | xargs | sed 's/ /,/g') -q
|
- clone
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: test3.7
|
- name: python3.7
|
||||||
image: python:3.7-stretch
|
pull: always
|
||||||
pull: always
|
image: python:3.7
|
||||||
environment:
|
commands:
|
||||||
PY_COLORS: "1"
|
- pip install tox -q
|
||||||
commands:
|
- "tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -q"
|
||||||
- pip install tox -q
|
depends_on:
|
||||||
- tox -e $(tox -l | grep py37 | xargs | sed 's/ /,/g') -q
|
- clone
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: build
|
---
|
||||||
image: python:3.7-alpine
|
kind: pipeline
|
||||||
pull: true
|
name: build
|
||||||
commands:
|
|
||||||
- python setup.py sdist bdist_wheel
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- tag
|
|
||||||
depends_on:
|
|
||||||
- test2.7
|
|
||||||
- test3.5
|
|
||||||
- test3.6
|
|
||||||
- test3.7
|
|
||||||
|
|
||||||
- name: checksum
|
platform:
|
||||||
image: alpine
|
os: linux
|
||||||
pull: always
|
arch: amd64
|
||||||
commands:
|
|
||||||
- apk add --no-cache coreutils
|
|
||||||
# exclude files
|
|
||||||
# - sha256sum -b files/!(*.out) > CHECKSUMFILE
|
|
||||||
- sha256sum -b dist/* > sha256sum.txt
|
|
||||||
depends_on:
|
|
||||||
- build
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: gpgsign
|
steps:
|
||||||
image: plugins/gpgsign:1
|
- name: build
|
||||||
pull: always
|
pull: always
|
||||||
settings:
|
image: python:3.7
|
||||||
key:
|
commands:
|
||||||
from_secret: gpgsign_key
|
- python setup.py sdist bdist_wheel
|
||||||
passphrase:
|
|
||||||
from_secret: gpgsign_passphrase
|
|
||||||
detach_sign: true
|
|
||||||
files:
|
|
||||||
- dist/*
|
|
||||||
depends_on:
|
|
||||||
- checksum
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: publish
|
- name: checksum
|
||||||
image: plugins/github-release
|
pull: always
|
||||||
settings:
|
image: alpine
|
||||||
api_key:
|
commands:
|
||||||
from_secret: github_token
|
- apk add --no-cache coreutils
|
||||||
files:
|
- "sha256sum -b dist/* > sha256sum.txt"
|
||||||
- dist/*
|
|
||||||
- sha256sum.txt
|
|
||||||
title: $${DRONE_TAG}
|
|
||||||
note: CHANGELOG.md
|
|
||||||
depends_on:
|
|
||||||
- gpgsign
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: pypi_publish
|
- name: gpg-sign
|
||||||
image: xoxys/drone-pypi:0.1.0
|
pull: always
|
||||||
pull: always
|
image: plugins/gpgsign:1
|
||||||
settings:
|
settings:
|
||||||
username:
|
detach_sign: true
|
||||||
from_secret: pypi_username
|
files:
|
||||||
password:
|
- "dist/*"
|
||||||
from_secret: pypi_password
|
key:
|
||||||
repository: https://upload.pypi.org/legacy/
|
from_secret: gpgsign_key
|
||||||
skip_build: true
|
passphrase:
|
||||||
depends_on:
|
from_secret: gpgsign_passphrase
|
||||||
- publish
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: notify
|
- name: publish-github
|
||||||
image: plugins/matrix
|
pull: always
|
||||||
settings:
|
image: plugins/github-release
|
||||||
homeserver: https://matrix.rknet.org
|
settings:
|
||||||
roomid: MtidqQXWWAtQcByBhH:rknet.org
|
api_key:
|
||||||
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
|
from_secret: github_token
|
||||||
username:
|
files:
|
||||||
from_secret: matrix_username
|
- "dist/*"
|
||||||
password:
|
- sha256sum.txt
|
||||||
from_secret: matrix_password
|
when:
|
||||||
depends_on:
|
event:
|
||||||
- pypi_publish
|
- tag
|
||||||
when:
|
|
||||||
status:
|
# - name: publish-pypi
|
||||||
- success
|
# pull: always
|
||||||
- failure
|
# 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
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- testing
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: notifications
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- image: plugins/matrix
|
||||||
|
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
|
||||||
|
|
||||||
|
...
|
||||||
|
Loading…
Reference in New Issue
Block a user