Woodpecker is a community fork of the Drone CI system.
Go to file
2017-04-02 23:13:26 +09: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 add approve/decline to client/cli 2017-03-18 17:05:49 +08:00
drone agent update build steps 2017-04-01 20:17:04 +09:00
model refactor job to proc 2017-04-02 23:13:26 +09:00
remote fixed gogs pr unit test 2017-03-18 23:28:37 +08:00
router load ui assets from filesystem 2017-03-20 23:51:41 +08:00
server refactor job to proc 2017-04-02 23:13:26 +09:00
shared Expose OAuth2 errors, avoid redirect loop. 2016-12-19 08:42:56 +03:00
store refactor job to proc 2017-04-02 23:13:26 +09:00
vendor agent update build steps 2017-04-01 20:17:04 +09:00
version removed legacy code, updated cli 2017-03-16 18:14:02 +08:00
.dockerignore update yaml for s3 upload 2016-05-26 11:08:48 -07:00
.drone.yml update urfavecli and prune deps 2017-03-16 18:17:10 +08:00
.drone.yml.sig update urfavecli and prune deps 2017-03-16 18:17:10 +08:00
.gitignore add proc and file structs 2017-03-28 17:53:06 +09: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 ignore branch parse error 2017-03-16 19:00:56 +08: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.