Woodpecker is a community fork of the Drone CI system.
Go to file
2017-02-01 09:28:24 +07:00
.github Add discourse to issue template [ci skip] 2016-11-21 16:13:06 +01:00
agent promote secret interpolation 2017-01-20 11:12:30 +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 Fix typo in help 2017-01-20 14:05:57 +01:00
model promote secret interpolation 2017-01-20 11:12:30 +07:00
remote Merge pull request #1887 from AlekSi/master 2017-01-20 19:15:46 +07:00
router Use default NOTICE log level for broker 2016-12-29 11:16:51 -05:00
server Send retain:remove before unsubscribing 2017-01-10 19:57:13 -06:00
shared Expose OAuth2 errors, avoid redirect loop. 2016-12-19 08:42:56 +03:00
store Implement backend for concealing secrets 2016-11-16 11:28:36 -08:00
vendor Merge pull request #1899 from veghead/socks 2017-01-18 23:32:19 +07:00
version bump version number, auto-pull new plugins, process http_proxy vars 2016-05-12 22:14:33 -07:00
yaml add custom bool true type 2017-01-19 11:22:34 +07:00
.dockerignore update yaml for s3 upload 2016-05-26 11:08:48 -07:00
.drone.yml update yaml to use interpolation [ci skip] 2017-01-20 12:48:29 +07: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 Add sourcegraph link [ci skip] 2017-02-01 09:28:24 +07: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:

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.