Drone 0.8.3 已发布,该版本在 when 子句中启用实例。
Drone 是一个轻量级,为容器构建的强大的持续交付平台。 Drone 以 Docker 镜像的方式在 Dockerhub 上打包和发布。
配置示例[code]pipeline:
backend:
image: golang
commands:
- go get
- go build
- go test
frontend:
image: node:6
commands:
- npm install
- npm test
publish:
image: plugins/docker
repo: octocat/hello-world
tags: [ 1, 1.1, latest ]
registry: index.docker.io
notify:
image: plugins/slack
channel: developers
username: drone[/code]软件详情:https://github.com/drone/drone/releases/tag/v0.8.3
下载地址:https://github.com/drone/drone/archive/v0.8.3.zip
来自:开源中国社区

