Woodpecker is a community fork of the Drone CI system.
Go to file
2016-04-22 18:15:07 -07:00
.github refact yaml operations to yaml package 2016-04-19 13:02:28 -07:00
api fixed nil pointer when closing stream 2016-04-22 17:50:28 -07:00
bus fully functioning build using 0.5 agents 2016-04-21 00:25:30 -07:00
cache improve and simplify repository caching 2016-03-04 21:15:50 -08:00
client re-attempt pushing updates from agent on failure 2016-04-21 18:05:54 -07:00
contrib removing deprecated files 2016-03-30 00:58:18 -07:00
drone created custom stream implementation 2016-04-22 17:35:32 -07:00
engine use new .drone.sig signature file 2016-04-21 17:10:19 -07:00
model re-attempt pushing updates from agent on failure 2016-04-21 18:05:54 -07:00
queue use new .drone.sig signature file 2016-04-21 17:10:19 -07:00
remote fixed failing gitlab test 2016-04-12 13:22:23 -07:00
router created custom stream implementation 2016-04-22 17:35:32 -07:00
shared use new .drone.sig signature file 2016-04-21 17:10:19 -07:00
static Merge pull request #1552 from jeffastorey/deployment-text 2016-03-30 11:40:03 -07:00
store fully functioning build using 0.5 agents 2016-04-21 00:25:30 -07:00
stream converted stream reader to io.ReadCloser 2016-04-22 18:15:07 -07:00
template fixing indentation 2016-03-31 20:16:38 -04:00
vendor updated vendored deps 2016-04-19 18:47:58 -07:00
version move version to package 2016-03-30 00:48:47 -07:00
web converted stream reader to io.ReadCloser 2016-04-22 18:15:07 -07:00
yaml enables cloning private repos 2016-04-21 01:18:20 -07:00
.drone.sec updated vendored deps 2016-04-19 18:47:58 -07:00
.drone.yml updated vendored deps 2016-04-19 18:47:58 -07:00
.gitignore chunk the yaml into sections 2016-04-19 18:37:53 -07:00
Dockerfile created custom stream implementation 2016-04-22 17:35:32 -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 chunk the yaml into sections 2016-04-19 18:37:53 -07:00
README.md deprecate internal docs in favor of drone/docs and deprecate deb 2015-12-15 23:19:26 -08: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.

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 be an industry-wide replacement for Jenkins.

Documentation

Drone documentation is organized into several categories:

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

Install build dependencies:

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:

export GO15VENDOREXPERIMENT=1

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

If you are seeing slow compile times please install the following:

go install github.com/mattn/go-sqlite3

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.