No description
Find a file
2019-06-25 14:51:46 +12:00
.github add policy [ci skip] 2019-06-24 08:04:14 -07:00
cmd enable legacy token mapper 2019-06-06 13:27:38 -07:00
core add test case that demonstrates issue #2658 2019-05-20 09:23:26 -07:00
docker force SIGINT when terminating the agent 2019-03-19 14:44:02 -07:00
handler fix inconsistent base64 encoding/decoding secrets 2019-06-06 16:57:58 -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 oss build 2019-05-14 17:28:15 +02:00
mock support for per-organization secrets 2019-04-14 17:06:16 -07:00
operator log external secret error 2019-06-22 19:00:12 -07:00
plugin log external secret error 2019-06-22 19:00:12 -07:00
pubsub add build tags 2019-02-27 23:07:13 -08:00
scheduler Merge pull request #2694 from chrisghill/issue/2693 2019-05-27 21:37:05 -07:00
server enable native tls [ci skip] 2019-04-25 18:07:28 -07:00
service pass through the true webhook action when parsing 2019-06-25 14:49:54 +12:00
session session that handles legacy tokens from file 2019-06-06 13:13:08 -07:00
store batch update error includes repository name and id 2019-06-06 22:09:12 -07:00
trigger fix error log in new skip action test 2019-06-25 14:51:46 +12:00
version fix incorrect version string [ci skip] 2019-06-11 19:41:15 -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 bump version number and changelog [ci skip] 2019-06-11 17:46:17 -07:00
go.mod bump drone-yaml to support actions 2019-06-16 23:51:30 -07:00
go.sum bump drone-yaml to support actions 2019-06-16 23:51:30 -07:00
LICENSE add rpc/v2 endpoint 2019-05-21 11:45:42 -07:00
NOTICE update notice [ci skip] 2019-02-19 19:55:28 -08:00
Taskfile.yml ensure unit tests run serially by package [ci skip] 2019-04-22 16:27:26 -07: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: