No description
Find a file
2020-06-10 17:00:32 -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 fix sql.ErrNoRows when watching for canceled builds 2020-06-08 15:36:08 -04:00
docker
handler custom token is ignored when creating a user 2020-06-08 15:51:00 -04:00
livelog
logger
metric
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 plugin/converter/starlark.go: fix comment 2020-05-26 14:37:10 +02:00
pubsub
scheduler
scripts
server
service re-assign repository ownership when user deleted or deactivated 2020-06-08 14:32:28 -04:00
session
store added endpoints for branch summary 2020-03-13 13:27:07 -04:00
trigger skip inactive cron repos 2020-03-10 13:30:30 -07:00
version fix sql.ErrNoRows when watching for canceled builds 2020-06-08 15:36:08 -04:00
web
.dockerignore
.drone.jsonnet
.drone.script
.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
BUILDING_OSS
CHANGELOG.md update changelog for 1.8 [CI SKIP] 2020-06-10 17:00:32 -04:00
go.mod bump go-scm version 2020-04-17 12:05:43 -04:00
go.sum re-assign repository ownership when user deleted or deactivated 2020-06-08 14:32:28 -04:00
LICENSE
NOTICE
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.