Woodpecker is a community fork of the Drone CI system.
Go to file
2015-04-16 14:45:05 -07:00
builder add yaml parser, build execution code. not yet hooked up 2015-04-16 00:10:17 -07:00
common using gravatar library instead of our own built-in func 2015-04-16 00:31:17 -07:00
datastore contemplating nested storage of tasks and statuses 2015-04-15 23:45:24 -07:00
eventbus fixed import path issue 2015-04-07 22:47:40 -07:00
parser add yaml parser, build execution code. not yet hooked up 2015-04-16 00:10:17 -07:00
remote ability to pull list of orgs and verify membership 2015-04-15 00:20:00 -07:00
server embedded task and status in build struct 2015-04-16 14:45:05 -07:00
settings storing user repos index inside users object, for now 2015-04-08 22:18:25 -07:00
.drone.yml experimental branch. playing around with boltdb 2015-04-07 01:20:55 -07:00
.gitignore experimental branch. playing around with boltdb 2015-04-07 01:20:55 -07:00
AUTHORS updated README to include more branch details 2014-07-13 19:53:59 -07:00
drone.go embedded task and status in build struct 2015-04-16 14:45:05 -07:00
LICENSE initial public commit 2014-02-07 03:10:01 -07:00
Makefile experimental branch. playing around with boltdb 2015-04-07 01:20:55 -07:00
README.md flag parse, load config, readme 2015-04-08 16:59:57 -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=""

[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 = ""