1 Star 0 Fork 169

Heall / mootdx

forked from bopo / mootdx 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.drone.yml 3.48 KB
一键复制 编辑 原始数据 按行查看 历史
bopo 提交于 2023-10-10 11:39 . 解决冲突
---
kind: pipeline
type: docker
name: default
steps:
- name: test
image: mootdx:squash
commands:
- pytest -v tests
- name: pypi_publish
image: plugins/pypi
settings:
username: john
password: secret
- name: dingtalk
image: lddsb/drone-dingtalk-message
settings:
token: your-dingtalk-robot-access-token
type: markdown
- name: deploy
image: drillster/drone-rsync
settings:
hosts: [ "server-prod1", "server-prod2" ]
source: ./target
target: ~/packages
include: [ "app.jar", "app.jar.md5" ]
script:
- cd ~/packages
- md5sum -c app.jar.md5
# https://plugins.drone.io/plugins/git-push
# - name: push_github
# image: appleboy/drone-git-push'
# settings:
# branch: develop
# remote: git@github.com:mootdx/mootdx.git
# force: false
# commit: false
# ssh_key:
# from_secret: ssh_key
# - name: push
# image: appleboy/drone-git-push'
# settings:
# branch: develop
# remote: git@gitee.com:ibopo/mootdx.git
# force: false
# commit: true
# ssh_key:
# from_secret: ssh_key
# https://plugins.drone.io/plugins/github-release
# - name: publish
# image: plugins/github-release
# settings:
# api_key:
# from_secret: github_apikey
# files: dist/*
# when:
# event:
# - promote
# target:
# - production
# # https://plugins.drone.io/plugins/dingtalk-message
# - name: dingtalk
# image: lddsb/drone-dingtalk-message
# settings:
# token:
# from_secret: dingtalk_token
# type: markdown
# when:
# event:
# - promote
# target:
# - production
#
# # https://plugins.drone.io/plugins/ssh
# - name: ssh
# image: appleboy/drone-ssh
# settings:
# host:
# - example1.com
# - example2.com
# username: ubuntu
# password:
# from_secret: ssh_password
# port: 22
# command_timeout: 2m
# script:
# - echo "Hello World"
# when:
# event:
# - promote
# target:
# - production
#
# # https://plugins.drone.io/plugins/pypi
# - name: pypi
# image: plugins/pypi
# settings:
# username: __token__
# password:
# from_secret: pypi_password
# when:
# event:
# - promote
# target:
# - production
#
# # https://plugins.drone.io/plugins/ansible
# - name: check ansible syntax
# image: plugins/ansible:3
# settings:
# playbook: ansible/playbook.yml
# galaxy: ansible/requirements.yml
# inventory: ansible/inventory
# syntax_check: true
# when:
# event:
# - promote
# target:
# - production
#
# - name: sync
# image: mootdx:ci
# environment:
# SSH_KEY:
# from_secret: ssh_key
# commands:
# - echo "$SSH_KEY" > ~/.ssh/id_rsa
# - git remote add github git@github.com:mootdx/mootdx.git
# - git remote add gitee git@gitee.com:ibopo/mootdx.git
# - git checkout develop
# - git pull gitee develop
# - git push gitee develop
# - git pull github develop
# - git push github develop
#
# - name: publish
# image: mootdx:ci
# environment:
# USERNAME:
# from_secret: username
# PASSWORD:
# from_secret: password
# commands:
# - make history USERNAME=$USERNAME PASSWORD=$PASSWORD
# - make publish USERNAME=$USERNAME PASSWORD=$PASSWORD
# when:
# event:
# - promote
# target:
# - production
Python
1
https://gitee.com/Heall/mootdx.git
git@gitee.com:Heall/mootdx.git
Heall
mootdx
mootdx
master

搜索帮助