Woodpecker is a community fork of the Drone CI system.
Go to file
2017-03-14 23:56:22 +08:00
.github Add discourse to issue template [ci skip] 2016-11-21 16:13:06 +01:00
agent use yaml parameter to restrict local plugin execution 2017-01-20 14:16:15 +07:00
build Merge pull request #1801 from olymk2/master 2016-10-25 00:00:53 +02:00
cache Check remote for org secrets access 2016-11-18 22:12:28 -06:00
client Remove logspam when SOCKS proxy fails to connect. 2017-01-18 11:28:48 -05:00
drone enable restart 2017-03-14 23:56:22 +08:00
model handle compiler or lint error 2017-03-10 02:58:25 -08:00
remote Github: fix webhook struct tags 2017-03-01 16:47:46 +00:00
router handle compiler or lint error 2017-03-10 02:58:25 -08:00
server enable restart 2017-03-14 23:56:22 +08:00
shared Expose OAuth2 errors, avoid redirect loop. 2016-12-19 08:42:56 +03:00
store fix mysql ddl build_error column 2017-03-13 23:30:41 +08:00
vendor enable restart 2017-03-14 23:56:22 +08:00
version bump version number, auto-pull new plugins, process http_proxy vars 2016-05-12 22:14:33 -07:00
yaml use when.local=false to disable plugin steps locally 2017-01-20 18:06:08 +07:00
.dockerignore update yaml for s3 upload 2016-05-26 11:08:48 -07:00
.drone.yml bump go version 2017-03-05 19:14:24 +11:00
.drone.yml.sig update yaml to use interpolation [ci skip] 2017-01-20 12:48:29 +07:00
.gitignore replace UI with single page application (#1704) 2016-07-08 15:40:29 -07:00
Dockerfile fix go coding style by gofmt. 2016-08-14 12:25:45 +08: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 Move golang.org/x/net/proxy dependency to vendor/ 2017-01-18 09:34:39 -05:00
README.md Update README.md [ci skip] 2017-02-17 16:28:06 +11:00

Build Status Release Status Gitter

Drone is a Continuous Integration platform built on container technology. Every build is executed inside an ephemeral Docker container, giving developers complete control over their build environment with guaranteed isolation.

Browse the code at https://sourcegraph.com/github.com/drone/drone

Goals

Drone's prime directive is to help teams ship code like GitHub. Drone is easy to install, setup and maintain and offers a powerful container-based plugin system. Drone aspires to eventually offer an industry-wide replacement for Jenkins.

Documentation

Documentation is published to readme.drone.io

Community, Help

Contributions, questions, and comments are welcomed and encouraged. Drone developers hang out in the drone/drone room on gitter. We ask that you please post your questions to gitter before creating an issue.

Installation

Please see our installation guide to install the official Docker image.

From Source

Clone the repository to your Go workspace:

export PATH=$PATH:$GOPATH/bin

git clone git://github.com/drone/drone.git $GOPATH/src/github.com/drone/drone
cd $GOPATH/src/github.com/drone/drone

Commands to build from source:

make deps          # Download required dependencies
make gen           # Generate code
make build_static  # Build the binary

If you are having trouble building this project please reference its .drone.yml file. Everything you need to know about building Drone is defined in that file.