No description
Find a file
2019-02-27 23:10:40 -08:00
.github wip enable CE 2019-02-20 10:34:26 -08:00
cmd merge remote-tracking branch 'origin/master' 2019-02-27 23:07:30 -08:00
core add build tags 2019-02-27 23:07:13 -08:00
docker feat(s3): allow user to specify s3 endpoint for non aws usage 2019-02-20 22:17:50 -06:00
handler merge remote-tracking branch 'origin/master' 2019-02-27 23:07:30 -08:00
livelog add build tags 2019-02-27 23:07:13 -08:00
logger add build tags 2019-02-27 23:07:13 -08:00
metric add build tags 2019-02-27 23:07:13 -08:00
mock add build tags 2019-02-27 23:07:13 -08:00
operator add build tags 2019-02-27 23:07:13 -08:00
plugin fix registry credentials from secrets 2019-02-22 11:58:23 -08:00
pubsub add build tags 2019-02-27 23:07:13 -08:00
scheduler add build tags 2019-02-27 23:07:13 -08:00
server wip enable CE 2019-02-20 10:34:26 -08:00
service add build tags 2019-02-27 23:07:13 -08:00
session add build tags 2019-02-27 23:07:13 -08:00
store merge remote-tracking branch 'origin/master' 2019-02-27 23:07:30 -08:00
trigger add build tags 2019-02-27 23:07:13 -08:00
version add build tags 2019-02-27 23:07:13 -08:00
web squash and merge local branch 2019-02-19 15:56:41 -08:00
.dockerignore update yaml for s3 upload 2016-05-26 11:08:48 -07:00
.drone.jsonnet fix manifest 2019-02-21 11:30:05 -08:00
.drone.script wip enable CE 2019-02-20 10:34:26 -08:00
.drone.yml fix manifest 2019-02-21 11:30:05 -08:00
.gitignore add build tags 2019-02-27 23:07:13 -08:00
BUILDING squash and merge local branch 2019-02-19 15:56:41 -08:00
go.mod bump go-scm to fix gitlab status issue 2019-02-24 11:34:57 -08:00
go.sum remove rootcerts from go.sum 2019-02-27 23:10:40 -08:00
LICENSE add build tags 2019-02-27 23:07:13 -08:00
NOTICE update notice [ci skip] 2019-02-19 19:55:28 -08:00
Taskfile.yml squash and merge local branch 2019-02-19 15:56:41 -08:00

Drone is a Continuous Delivery system built on container technology. Drone uses a simple YAML configuration file, a superset of docker-compose, to define and execute Pipelines inside Docker containers.


Sample Pipeline Configuration:

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

Documentation and Other Links: