No description
Find a file
2019-11-10 23:38:03 +08:00
.github Update readme [CI SKIP] 2019-09-10 18:52:08 -07:00
cmd use new batch alogorithm by default, fixes #2658 2019-10-03 14:34:36 -07:00
core endpoint to paginate through all repos 2019-10-02 11:29:57 -07:00
docker add nsswitch to docker images 2019-10-01 09:54:45 -07:00
handler fix nil pointer caused by nil current user 2019-10-17 23:09:37 -07: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 fix some typo 2019-11-10 23:38:03 +08:00
mock endpoint to paginate through all repos 2019-10-02 11:29:57 -07:00
operator fix issue not converting legacy pipeline 2019-11-08 11:43:33 -08:00
plugin Merge pull request #2837 from alrs/fix-webhook-dropped-err [ci skip] 2019-09-23 17:38:51 -07:00
pubsub add build tags 2019-02-27 23:07:13 -08:00
scheduler support legacy yaml conversion 2019-07-18 18:31:10 -07: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 load license from env directly 2019-11-05 13:11:53 -08:00
session session that handles legacy tokens from file 2019-06-06 13:13:08 -07:00
store endpoint to paginate through all repos 2019-10-02 11:29:57 -07:00
trigger fix some typo 2019-11-10 23:38:03 +08:00
version bump to 1.6.2 [CI SKIP] 2019-11-08 11:57:52 -08: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 Upgraded to Go 1.13.0 due to segmentation faults on ARM devices. (Fixes #2823) 2019-09-11 22:50:36 +02:00
.gitignore include build scripts 2019-08-06 22:53:35 -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 to 1.6.2 [CI SKIP] 2019-11-08 11:57:52 -08:00
go.mod bump drone-yaml package 2019-10-31 00:13:25 -07:00
go.sum bump drone-yaml package 2019-10-31 00:13:25 -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 add batch2 tests for mysql and postgres 2019-09-23 16:45: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:

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.