No description
Find a file
2021-05-19 13:36:27 +01:00
.github copy over standard contributing.md file [CI SKIP] 2021-02-04 14:43:51 -05:00
cmd/drone-server support optional convert plugin cache size 2021-05-14 14:06:47 -04:00
core update login / register screens 2021-05-13 13:51:22 -04:00
docker fixing a small typo in the compose readme. (#3077) 2021-05-04 10:59:47 +01:00
handler update login / register screens 2021-05-13 13:51:22 -04:00
livelog
logger
metric update login / register screens 2021-05-13 13:51:22 -04:00
mock update login / register screens 2021-05-13 13:51:22 -04:00
operator fix sql.ErrNoRows when watching for canceled builds 2020-06-08 15:36:08 -04:00
plugin support optional convert plugin cache size 2021-05-14 14:06:47 -04:00
pubsub
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
store generate ddl for database 2021-05-19 13:36:27 +01:00
trigger support for limiting concurrency per-repository 2020-12-11 13:57:49 -05:00
version bump version.go file 2021-05-04 17:08:30 -04:00
web
.dockerignore
.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
BUILDING_OSS
CHANGELOG.md bump user interface version 2021-05-04 22:11:49 -04:00
go.mod update login / register screens 2021-05-13 13:51:22 -04:00
go.sum update login / register screens 2021-05-13 13:51:22 -04:00
LICENSE
NOTICE
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.