Woodpecker is a community fork of the Drone CI system.
Go to file
2017-09-07 17:43:33 -07:00
.github fixes #1523 to ensure json-file driver 2017-06-22 15:06:28 -04:00
cmd Merge pull request #2155 from frebib/fix-repo-user 2017-08-23 15:44:10 -07:00
model Made ResetVisibility and ParseRepo generic. 2017-08-21 18:49:09 -04:00
plugins Merge pull request #2118 from avatao/senderallowed-post [ci skip] 2017-07-24 23:38:44 -04:00
remote update listing 2017-08-26 15:59:57 -07:00
router improve UI loader 2017-09-07 17:43:33 -07:00
server improve UI loader 2017-09-07 17:43:33 -07:00
shared Expose OAuth2 errors, avoid redirect loop. 2016-12-19 08:42:56 +03:00
store capture file metadata 2017-08-02 16:04:00 -04:00
vendor improve UI loader 2017-09-07 17:43:33 -07:00
version structured agent logging 2017-08-03 15:36:22 -04:00
.dockerignore update yaml for s3 upload 2016-05-26 11:08:48 -07:00
.drone.sh Merge pull request #2121 from bradrydzewski/master 2017-07-18 16:12:59 -04:00
.drone.yml fix route for proc logs 2017-08-24 17:03:11 -07:00
.gitignore remove generated migration code from gitignore 2017-05-13 10:08:39 +02:00
Dockerfile separate agent and server binary 2017-06-29 18:51:22 -04:00
Dockerfile.agent build agent with CGO disabled [ci skip] 2017-06-29 20:38:43 -04:00
Dockerfile.agent.linux.arm publish arm32 and arm64 agent images 2017-07-18 14:43:37 -04:00
Dockerfile.agent.linux.arm64 publish arm32 and arm64 agent images 2017-07-18 14:43:37 -04:00
LICENSE initial public commit 2014-02-07 03:10:01 -07:00
README.md Syntax highlight example drone.yml 2017-06-07 09:55:28 +01: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:

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: