No description
Find a file
2019-06-25 14:51:46 +12:00
.github
cmd
core
docker
handler
livelog
logger
metric
mock
operator
plugin
pubsub
scheduler
server
service pass through the true webhook action when parsing 2019-06-25 14:49:54 +12:00
session
store
trigger fix error log in new skip action test 2019-06-25 14:51:46 +12:00
version
web
.dockerignore
.drone.jsonnet
.drone.script
.drone.yml
.gitignore
BUILDING
BUILDING_OSS
CHANGELOG.md
go.mod
go.sum
LICENSE
NOTICE
Taskfile.yml

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:

pipeline:
  backend:
    image: golang
    commands:
      - go get
      - go build
      - go test

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

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

  notify:
    image: plugins/slack
    channel: developers
    username: drone

Documentation and Other Links: