Woodpecker is a community fork of the Drone CI system.
Find a file
Brad Rydzewski 1375a04394 Merge pull request #2139 from bradrydzewski/features/quic
enable QUIC protocol with flag
2017-07-24 23:39:00 -04:00
.github
cmd improve experimental quic setup 2017-07-24 21:46:00 -04:00
model refresh repo info on activation 2017-07-21 11:53:11 -04:00
plugins Merge pull request #2118 from avatao/senderallowed-post [ci skip] 2017-07-24 23:38:44 -04:00
remote Added integration for coding.net 2017-07-22 17:12:09 +08:00
router serve logs with sse; update acme pkg 2017-07-24 15:57:07 -04:00
server improve experimental quic setup 2017-07-24 21:46:00 -04:00
shared
store read user and log sql queries from file 2017-07-20 16:34:52 -04:00
vendor implement quic server 2017-07-24 19:15:25 -04:00
version bump version [ci skip] 2017-07-20 14:32:44 -04:00
.dockerignore
.drone.sh
.drone.yml bump version [ci skip] 2017-07-20 14:32:44 -04:00
.gitignore
Dockerfile
Dockerfile.agent
Dockerfile.agent.linux.arm
Dockerfile.agent.linux.arm64
LICENSE
README.md

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: