Woodpecker is a community fork of the Drone CI system.
Go to file
2015-08-30 01:18:45 +03:00
bin fixed gitignore of dist folder 2015-05-17 12:18:03 -07:00
cmd Additional fixes 2015-08-30 01:18:45 +03:00
dist added dronerc to project 2015-08-12 00:25:19 -07:00
doc doc: Fix typo ListAndServerTLS -> ListenAndServeTLS 2015-08-25 15:27:29 +08:00
Godeps GitLab service interface 2015-08-30 00:33:41 +03:00
pkg Additional fixes 2015-08-30 01:18:45 +03:00
.dockerignore added alpine build image 2015-08-09 15:36:25 -07:00
.drone.yml Execute the new go make tasks 2015-08-27 11:03:23 +02:00
.gitignore Integrated styles task 2015-08-27 10:56:29 +02:00
Dockerfile add empty drone.toml to satisfy drone startup requirements 2015-06-05 19:48:28 +02:00
Dockerfile.alpine added alpine build image 2015-08-09 15:36:25 -07:00
Dockerfile.env switch to /bin/sh instead of /bin/bash for portability 2015-06-06 14:00:36 -07:00
LICENSE initial public commit 2014-02-07 03:10:01 -07:00
make.go Integrated scripts task 2015-08-27 10:57:17 +02:00
Makefile Removed in go implemented tasks from Makefile 2015-08-27 11:03:03 +02:00
README.md documented encrypted variables 2015-08-20 12:42:13 -07:00

WARNING the 0.4 branch is very unstable. We only recommend running this branch if you plan to dig into the codebase, troubleshoot issues and contribute (please do!). We will notify the broader community once this branch is more stable.

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.

Cloning, Building, Running

If you are new to Go, make sure you install Go 1.5+ and setup your workspace (ie $GOPATH). Go programs use directory structure for package imports, therefore, it is very important you clone this project to the specified directory in your Go path:

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 dependencies
make         # create binary files in ./bin
make test    # execute unit tests

Commands to start drone:

bin/drone
bin/drone --debug # debug mode loads static content from filesystem

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

go install github.com/drone/drone/Godeps/_workspace/src/github.com/mattn/go-sqlite3