No description
Find a file
2019-03-14 18:16:44 -07:00
.github wip enable CE 2019-02-20 10:34:26 -08:00
cmd enable basic jsonnet in process 2019-03-13 16:12:54 -07:00
core audit headers 2019-03-13 14:47:47 -07:00
docker use windows-{version}-amd64 convention for image tags 2019-03-14 17:27:25 -07:00
handler update stats to include windows 1809 [ci skip] 2019-03-14 17:35:00 -07:00
livelog audit headers 2019-03-13 14:47:47 -07:00
logger add build tags 2019-02-27 23:07:13 -08:00
metric fix failing request match 2019-03-13 15:16:42 -07:00
mock remove deprecated scheduler 2019-03-05 23:47:55 -08:00
operator fix issue #2553 2019-03-14 10:16:19 -07:00
plugin enable basic jsonnet in process 2019-03-13 16:12:54 -07:00
pubsub add build tags 2019-02-27 23:07:13 -08:00
scheduler audit headers 2019-03-13 14:47:47 -07:00
server wip enable CE 2019-02-20 10:34:26 -08:00
service audit headers 2019-03-13 14:47:47 -07:00
session add build tags 2019-02-27 23:07:13 -08:00
store fix issue #2553 2019-03-14 10:16:19 -07:00
trigger audit headers 2019-03-13 14:47:47 -07:00
version bump version [ci skip] 2019-03-05 16:04:10 -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 update agent manifest last [ci skip] 2019-03-05 16:49:58 -08:00
.drone.script wip enable CE 2019-02-20 10:34:26 -08:00
.drone.yml update agent manifest last [ci skip] 2019-03-05 16:49:58 -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
BUILDING_OSS add building oss [ci skip] 2019-03-13 14:50:24 -07:00
go.mod bump user interface 2019-03-14 18:16:44 -07:00
go.sum bump user interface 2019-03-14 18:16:44 -07:00
LICENSE add building oss [ci skip] 2019-03-13 14:50:24 -07: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: