Woodpecker is a community fork of the Drone CI system.
Go to file
Tristram Oaten acef6b9ce9 Syntax highlight example drone.yml
If you can, you might as well, no?
2017-06-07 09:55:28 +01: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 remove unnecessary slashes from url 2017-05-24 10:16:32 +08:00
model fix merge conflicts 2017-05-23 14:43:50 +02:00
plugins update vendored files 2017-05-12 12:30:19 +02:00
remote update hook event 2017-05-24 10:16:32 +08:00
router ignore empty orgs value 2017-05-30 17:43:34 +02:00
server bump version to 0.7 2017-05-24 16:45:56 +02:00
shared Expose OAuth2 errors, avoid redirect loop. 2016-12-19 08:42:56 +03:00
store doh. fix migration for sqlite 2017-06-01 14:47:06 +02:00
vendor bump pipeline runner to support network_mode 2017-06-03 17:29:02 +02:00
version bump version 0.7.1 2017-05-25 12:31:37 +02:00
.dockerignore update yaml for s3 upload 2016-05-26 11:08:48 -07:00
.drone.sh remove CLI from build process 2017-05-22 16:19:13 +02:00
.drone.yml bump version 0.7.1 2017-05-25 12:31:37 +02:00
.gitignore remove generated migration code from gitignore 2017-05-13 10:08:39 +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
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: