Woodpecker is a community fork of the Drone CI system.
Go to file
2019-05-30 14:31:18 +02:00
.github Update issue_template.md [ci skip] 2017-09-06 15:21:15 -07:00
cli Removed enterprise CLI features 2019-04-07 21:04:24 +02:00
cmd Was throwing: currval of sequence builds_build_id_seq is not yet defined in this session 2019-05-30 14:06:49 +02:00
cncd I lost these files due to a wrong .gitignore entry 2019-04-26 13:53:56 +02:00
model Pull in cncd/* for simpler workflow 2019-04-06 15:44:04 +02:00
plugins Renamed package 2019-04-04 20:51:20 +02:00
remote Renamed package 2019-04-04 20:51:20 +02:00
router Renamed package 2019-04-04 20:51:20 +02:00
server Pull in cncd/* for simpler workflow 2019-04-06 15:44:04 +02:00
shared Just fixed format with go fmt ./... 2018-03-21 14:02:17 +01:00
store This should have been generated somehow 2019-05-30 14:31:18 +02:00
vendor Reimlemented metrics 2019-05-30 11:11:14 +02:00
version bump static version 2018-11-15 13:02:09 -08:00
.cli.sh CLI is pulled in for simpler(?) workflow 2019-04-06 21:32:14 +02:00
.dockerignore Building OSS 2019-04-05 10:17:27 +02:00
.drone.sh Building OSS 2019-04-05 10:17:27 +02:00
.drone.yml Bump version 2019-05-30 11:52:07 +02:00
.gitignore I lost these files due to a wrong .gitignore entry 2019-04-26 13:53:56 +02:00
BUILDING Locking down drone-ui version 2019-04-05 15:53:28 +02:00
docker-compose.yml Local test helper 2019-05-30 11:11:27 +02:00
Dockerfile update base image to drone/ca-certs 2017-09-11 16:03:11 -07:00
Dockerfile.agent add alpine images 2017-09-27 19:01:52 -07:00
Dockerfile.agent.alpine upgrade alpine base images to latest version 2018-02-01 22:15:50 +01:00
Dockerfile.agent.linux.arm add alpine images 2017-09-27 19:01:52 -07:00
Dockerfile.agent.linux.arm64 add alpine images 2017-09-27 19:01:52 -07:00
Dockerfile.alpine upgrade alpine base images to latest version 2018-02-01 22:15:50 +01:00
LICENSE Format LICENSE [ci skip] 2018-02-16 13:52:26 -08:00
README.md Fix typo 2017-09-29 09:49:56 +08: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: