Woodpecker is a community fork of the Drone CI system.
Go to file
2017-05-06 03:15:47 +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 simplify gating logic 2017-05-05 20:05:42 +02:00
model simplify gating logic 2017-05-05 20:05:42 +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 simplify gating logic 2017-05-05 20:05:42 +02:00
vendor re-enable when local clause 2017-05-06 03:15:47 +02:00
version bump to 0.6 rc.2 2017-05-06 03:12:05 +02:00
.dockerignore update yaml for s3 upload 2016-05-26 11:08:48 -07:00
.drone.yml setup queue service in main package 2017-05-04 02:02:08 +02:00
.gitignore setup store in main() 2017-05-03 23:25:33 +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-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.