Woodpecker is a community fork of the Drone CI system.
Go to file
2015-04-30 14:23:46 -07:00
builder added cluster in place of pool, some other minor changes 2015-04-21 15:48:06 -07:00
common hooks are protected with signed sha 2015-04-30 14:23:46 -07:00
datastore hooks are protected with signed sha 2015-04-30 14:23:46 -07:00
eventbus test cov for eventbus 2015-04-28 15:30:51 -07:00
parser hook honors branch filter 2015-04-30 10:39:16 -07:00
queue queue polling not correctly handles client disconnect 2015-04-26 23:49:38 -07:00
remote hooks are protected with signed sha 2015-04-30 14:23:46 -07:00
server hooks are protected with signed sha 2015-04-30 14:23:46 -07:00
settings hooks are protected with signed sha 2015-04-30 14:23:46 -07:00
.drone.yml fixed bindata build issues 2015-04-25 16:46:02 -07:00
.gitignore website subscribes to build events, update pages 2015-04-25 21:27:24 -07:00
AUTHORS updated README to include more branch details 2014-07-13 19:53:59 -07:00
drone.go hooks are protected with signed sha 2015-04-30 14:23:46 -07:00
LICENSE initial public commit 2014-02-07 03:10:01 -07:00
Makefile ability to get netrc from remote 2015-04-28 14:39:48 -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 = ""