No description
Find a file
2019-04-20 17:12:37 -07:00
.github closes issue #2534 [CI SKIP] 2019-04-13 01:58:26 -07:00
cmd ability to set cookie secure flag, closes #2671 2019-04-19 12:32:35 -07:00
core fix some typos 2019-04-16 11:05:46 +08:00
docker force SIGINT when terminating the agent 2019-03-19 14:44:02 -07:00
handler handle skipped node in middle of dependency chain 2019-04-20 17:12:37 -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 bump go-scm to version 1.3.0 2019-04-10 16:28:40 -07:00
mock support for per-organization secrets 2019-04-14 17:06:16 -07:00
operator Merge pull request #2661 from tboerger/fix-matrix-convert 2019-04-16 22:19:57 -07:00
plugin Merge pull request #2670 from xuyang2/master [CI SKIP] 2019-04-16 16:14:16 -07:00
pubsub add build tags 2019-02-27 23:07:13 -08:00
scheduler ability to pause and resume build queue 2019-03-17 14:31:07 -07:00
server wip enable CE 2019-02-20 10:34:26 -08:00
service fix some typos 2019-04-16 11:05:46 +08:00
session ability to set cookie secure flag, closes #2671 2019-04-19 12:32:35 -07:00
store Fix mysql typo in ddl_gen 2019-04-17 17:39:55 -04:00
trigger handle skipped node in middle of dependency chain 2019-04-20 17:12:37 -07:00
version fix version test [CI SKIP] 2019-04-13 11:11:53 -07: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 some typos 2019-04-16 09:27:15 +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
CHANGELOG.md ability to set cookie secure flag, closes #2671 2019-04-19 12:32:35 -07:00
go.mod upgrade go-scm [CI SKIP] 2019-04-18 12:05:47 -07:00
go.sum partial fix for #2654 2019-04-19 17:20:40 -07:00
LICENSE add waiver [ci skip] 2019-03-22 17:07:09 -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: