Woodpecker is a community fork of the Drone CI system.
Go to file
folex 0b73e5489b Add tests:
- read access
- write access
- admin access
2018-04-27 20:48:54 +03:00
.github Update issue_template.md [ci skip] 2017-09-06 15:21:15 -07:00
cmd Merge pull request #2369 from JonasFranzDEV/master 2018-03-30 09:32:09 -07:00
model Just fixed format with go fmt ./... 2018-03-21 14:02:17 +01:00
plugins Just fixed format with go fmt ./... 2018-03-21 14:02:17 +01:00
remote Add tests: 2018-04-27 20:48:54 +03:00
router Merge pull request #2359 from techmexdev/patch-1 [ci skip] 2018-04-01 11:43:12 -07:00
server Add ability to restart build of any state 2018-04-06 17:54:24 +03:00
shared Just fixed format with go fmt ./... 2018-03-21 14:02:17 +01:00
store Merge pull request #2313 from Valeran86/bugix/postgres-semicolon-in-scripts [ci skip] 2018-04-01 11:38:00 -07:00
vendor update vendored pipeline runner 2018-04-01 11:34:01 -07:00
version bump target version number to 0.8.5 2018-03-29 10:40:54 -07: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 bump target version number to 0.8.5 2018-03-29 10:40:54 -07:00
.gitignore Use user/permissions bitbucket API instead of hooks 2018-04-27 19:01:15 +03:00
BUILDING Create BUILDING [CI SKIP] 2017-10-21 10:29:14 -07: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: