87 lines
1.8 KiB
YAML
87 lines
1.8 KiB
YAML
kind: pipeline
|
|
name: "test python and publish to dockerhub"
|
|
type: docker
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
steps:
|
|
- name: skip_tls_clone
|
|
image: plugins/git
|
|
settings:
|
|
depth: 10
|
|
skip_verify: true
|
|
|
|
- name: semantic-release
|
|
purge: true
|
|
image: cphapt/cpha-semantic-release:latest
|
|
environment:
|
|
GITEA_TOKEN:
|
|
from_secret: gitea_token
|
|
commands:
|
|
- semantic-release
|
|
|
|
- name: setup-virtualenv
|
|
image: python:3.7-alpine
|
|
commands:
|
|
- pip install virtualenv
|
|
- virtualenv /tmp/shared/.venv
|
|
- source /tmp/shared/.venv/bin/activate
|
|
volumes:
|
|
- name: shared
|
|
path: /tmp/shared
|
|
|
|
- name: testing
|
|
image: python:3.7-alpine
|
|
commands:
|
|
- source /tmp/shared/.venv/bin/activate
|
|
- python randomport/randomport1.py
|
|
volumes:
|
|
- name: shared
|
|
path: /tmp/shared
|
|
|
|
- name: build-and-publish
|
|
image: plugins/docker
|
|
settings:
|
|
purge: false
|
|
debug: false
|
|
auto_tag: true
|
|
dockerfile: Dockerfile
|
|
repo: sthopeless/randomport
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
|
|
- name: discord
|
|
image: appleboy/drone-discord
|
|
environment:
|
|
DISCORD_WEBHOOK_ID:
|
|
from_secret: discord_webhook_id
|
|
DISCORD_WEBHOOK_TOKEN:
|
|
from_secret: discord_webhook_token
|
|
settings:
|
|
message: >
|
|
{{#success build.status}}
|
|
✅ Build #{{build.number}} of `{{repo.name}}` succeeded.
|
|
|
|
📝 Commit by {{commit.author}} on `{{commit.branch}}`:
|
|
```
|
|
{{commit.message}}
|
|
```
|
|
🌐 <{{ build.link }}>
|
|
{{else}}
|
|
❌ Build #{{build.number}} of `{{repo.name}}` failed.
|
|
📝 Commit by {{commit.author}} on `{{commit.branch}}`:
|
|
```
|
|
{{commit.message}}
|
|
```
|
|
🌐 <{{ build.link }}>
|
|
{{/success}}
|
|
when:
|
|
status:
|
|
- failure
|
|
|
|
volumes:
|
|
- name: shared
|
|
temp: {} |