Woodpecker is a community fork of the Drone CI system.
Go to file
2017-05-11 14:12:45 +02:00
.github Add discourse to issue template [ci skip] 2016-11-21 16:13:06 +01:00
cache Check remote for org secrets access 2016-11-18 22:12:28 -06:00
client added repo repair 2017-04-12 15:32:44 +02:00
drone Fixed typo for volume access 2017-05-08 23:38:54 +02:00
model Revert "Fix segfault in model.Tree(procs)" 2017-05-09 21:19:51 +02:00
plugins simplify gating logic 2017-05-05 20:05:42 +02:00
remote fixed gogs pr unit test 2017-03-18 23:28:37 +08:00
router persist and compare yaml for gating 2017-05-05 18:59:37 +02:00
server simplify gating logic 2017-05-05 20:05:42 +02:00
shared Expose OAuth2 errors, avoid redirect loop. 2016-12-19 08:42:56 +03:00
store Order procs by proc_pid 2017-05-09 21:20:33 +02:00
vendor update vendor files for vault 2017-05-08 03:21:54 +02:00
version bump versions to 0.6 2017-05-10 10:45:24 +02:00
.dockerignore update yaml for s3 upload 2016-05-26 11:08:48 -07:00
.drone.yml bump versions to 0.6 2017-05-10 10:45:24 +02:00
.gitignore update build process 2017-05-08 02:01:04 +02:00
ci.sh fix build number not being compiled into binary 2017-05-08 11:39:38 +02:00
dist.sh update build process 2017-05-08 02:01:04 +02:00
Dockerfile store lets encrypt in same dir as sqlite 2017-04-29 19:46:36 +02:00
Dockerfile.arm64 update yaml for s3 upload 2016-05-26 11:08:48 -07:00
Dockerfile.armhf update yaml for s3 upload 2016-05-26 11:08:48 -07:00
Dockerfile.windows update yaml for s3 upload 2016-05-26 11:08:48 -07:00
LICENSE initial public commit 2014-02-07 03:10:01 -07:00
MAINTAINERS Update MAINTAINERS [CI SKIP] 2015-12-09 14:12:55 -08:00
Makefile drone exec should read secrets from env 2017-04-21 18:18:11 +02:00
README.md Update README.md [ci skip] 2017-05-11 14:12:45 +02: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

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

Documentation and Other Links: