No description
Find a file
2021-03-18 15:22:18 -04:00
.github copy over standard contributing.md file [CI SKIP] 2021-02-04 14:43:51 -05:00
cmd/drone-server remove deprecated schedulers 2021-01-20 16:29:40 -05:00
core dot is valid for username (#2958) 2021-03-16 15:50:34 +00:00
docker bump ui dist 2021-03-18 15:07:48 -04:00
handler redirect root path to welcome if no user auth 2021-03-18 15:22:18 -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 remove deprecated schedulers 2021-01-20 16:29:40 -05:00
mock update mock scm 2020-10-29 09:19:22 -04:00
operator fix sql.ErrNoRows when watching for canceled builds 2020-06-08 15:36:08 -04:00
plugin enable simple starlark scripts in core 2020-11-20 08:56:47 -05:00
pubsub add build tags 2019-02-27 23:07:13 -08:00
scheduler do not assume stage execution order in queue concurrency limiting 2021-02-10 19:13:17 -05:00
scripts remove unused binaries from build process 2021-01-20 16:55:40 -05:00
server check organization membership when authorizing orgsecret access 2019-09-29 13:51:56 -07:00
service support for gitlab and github internal visibility 2020-12-18 13:59:16 -05:00
session session that handles legacy tokens from file 2019-06-06 13:13:08 -07:00
store support for limiting concurrency per-repository 2020-12-11 13:57:49 -05:00
trigger support for limiting concurrency per-repository 2020-12-11 13:57:49 -05:00
version prepare 1.10.1 release [ci skip] 2020-12-22 10:44:04 -05: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.yml fix sql.ErrNoRows when watching for canceled builds 2020-06-08 15:36:08 -04:00
.gitignore adding local development files [CI SKIP] 2020-11-11 14:25:18 -05: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 remove deprecated schedulers 2021-01-20 16:29:40 -05:00
go.mod bump ui dist 2021-03-18 15:07:48 -04:00
go.sum bump ui dist 2021-03-18 15:07:48 -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 remove unused binaries from build process 2021-01-20 16:55:40 -05: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.