Woodpecker is a community fork of the Drone CI system.
Go to file
2015-05-21 23:04:08 -07:00
bin fixed gitignore of dist folder 2015-05-17 12:18:03 -07:00
cmd fixed some but not all responsive issues 2015-05-21 23:04:08 -07:00
dist fixed gitignore of dist folder 2015-05-17 12:18:03 -07:00
doc code re-enables build agents. needs to be more thoroughly tested 2015-05-18 15:47:13 -07:00
pkg fixed styling 2015-05-21 17:00: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 moved to central copy function 2015-05-17 19:25:53 -07:00
Dockerfile adding code for a drone build agent 2015-05-18 10:05:58 -07:00
LICENSE initial public commit 2014-02-07 03:10:01 -07:00
Makefile fixed issue w/ makefile 2015-05-18 15:47:48 -07:00
README.md add agents attribute to toml 2015-05-18 21:54:10 -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 = ""

[agents]
secret = ""