Woodpecker is a community fork of the Drone CI system.
Go to file
2015-05-16 20:35:41 -07:00
cmd/drone-build fixed some build issues 2015-05-16 17:46:29 -07:00
common fixed some build issues 2015-05-16 17:46:29 -07:00
datastore New set of Unit Tests for Build, based on 0.4.0 2015-05-14 23:31:18 -06:00
eventbus pre-marshal websocket message to avoid possible race 2015-05-05 19:46:26 -07:00
parser hook honors branch filter 2015-04-30 10:39:16 -07:00
pkg/config moving config code 2015-05-16 17:48:08 -07:00
queue backported 0.4 changes to existing database 2015-05-11 00:45:31 -07:00
remote persist self url in repo field 2015-05-12 23:58:30 -07:00
runner fixed some build issues 2015-05-16 17:46:29 -07:00
server prevent hanging event source connections 2015-05-16 20:35:41 -07:00
settings backported 0.4 changes to existing database 2015-05-11 00:45:31 -07:00
.drone.yml upgraded to latest version of gin to take advantage of SSE 2015-05-16 19:46:12 -07:00
.gitignore fixed some minor bugs in build 2015-05-15 14:55:26 -07:00
drone.go backported 0.4 changes to existing database 2015-05-11 00:45:31 -07:00
LICENSE initial public commit 2014-02-07 03:10:01 -07:00
Makefile fixed some build issues 2015-05-16 17:46:29 -07:00
README.md added public key to repo settings 2015-04-16 15:15:05 -07:00

Highly experimental branch that implements the following features:

  • Pluggable database backends
  • Pluggable queue
  • Matrix builds
  • Build plugins
  • New Yaml syntax
  • and more ...

Running Drone:

./drone --config="/path/to/config.toml"

Configuring Drone:

[server]
addr = ":80"
cert = ""
key = ""

[session]
secret = ""
expires = ""

[database]
path = "/etc/drone/drone.db"

[docker]
cert = ""
key = ""
nodes = [
  "unix:///var/run/docker.sock",
  "unix:///var/run/docker.sock"
]

[service]
name = "github"
base = "https://github.com"
orgs = []
open = false
private_mode = false
skip_verify = true

[service.oauth]
client = ""
secret = ""
authorize = "https://github.com/login/oauth/authorize"
access_token = "https://github.com/login/oauth/access_token"
request_token = ""