No description
Find a file
2020-08-26 15:12:01 -04:00
.github Send users to Discourse for issues [CI SKIP] 2020-02-26 09:37:46 -08:00
cmd re-assign repository ownership when user deleted or deactivated 2020-06-08 14:32:28 -04:00
core support for skipped or blocked pipelines if validation fails 2020-08-26 15:11:02 -04:00
docker Update alpine base image to v3.11 2020-01-26 16:31:47 +11:00
handler ensure rollback functionality available to collaborators 2020-08-19 17:11:31 -04:00
livelog livelog: remove potential race conditions from tests 2019-09-18 00:40:40 -07:00
logger add build tags 2019-02-27 23:07:13 -08:00
metric add endpoint to list user repos 2020-02-07 08:45:48 -08:00
mock re-assign repository ownership when user deleted or deactivated 2020-06-08 14:32:28 -04:00
operator fix sql.ErrNoRows when watching for canceled builds 2020-06-08 15:36:08 -04:00
plugin support for skipped or blocked pipelines if validation fails 2020-08-26 15:11:02 -04:00
pubsub add build tags 2019-02-27 23:07:13 -08:00
scheduler Add default labels to all Nomad Drone Controller jobs on creation 2020-01-09 13:49:29 -08:00
scripts add .exe extension to windows binaries 2019-08-06 23:16:21 -07:00
server check organization membership when authorizing orgsecret access 2019-09-29 13:51:56 -07:00
service clarify build tags 2020-08-25 16:07:13 -04:00
session session that handles legacy tokens from file 2019-06-06 13:13:08 -07:00
store added endpoints for branch summary 2020-03-13 13:27:07 -04:00
trigger support for skipped or blocked pipelines if validation fails 2020-08-26 15:12:01 -04:00
version bump version [CI SKIP] 2020-07-12 14:19:18 -04: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 add pipelines to build windows agents 2019-08-06 22:47:04 -07:00
.drone.yml fix sql.ErrNoRows when watching for canceled builds 2020-06-08 15:36:08 -04:00
.gitignore update changelog 2020-03-10 13:30:03 -07:00
BUILDING squash and merge local branch 2019-02-19 15:56:41 -08:00
BUILDING_OSS fix OSS build for v1.4.0. 2019-09-16 17:48:57 +09:00
CHANGELOG.md bump version [CI SKIP] 2020-07-12 14:19:18 -04:00
go.mod support for skipped or blocked pipelines if validation fails 2020-08-26 15:11:02 -04:00
go.sum support for skipped or blocked pipelines if validation fails 2020-08-26 15:11:02 -04: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 added endpoints for branch summary 2020-03-13 13:27:07 -04: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:

name: default

kind: pipeline
type: docker

steps:
- name: backend
  image: golang
  commands:
    - go get
    - go build
    - go test

- name: frontend
  image: node:6
  commands:
    - npm install
    - npm test

- name: publish
  image: plugins/docker
  settings:
    repo: octocat/hello-world
    tags: [ 1, 1.1, latest ]
    registry: index.docker.io

- name: notify
  image: plugins/slack
  settings:
    channel: developers
    username: drone

Documentation and Other Links:

Please note the official Docker images run the Drone Enterprise distribution. If you would like to run the Community Edition you can build from source by following the instructions in BUILDING_OSS.