Woodpecker is a community fork of the Drone CI system.
Go to file
2015-04-24 14:25:03 -07:00
builder added cluster in place of pool, some other minor changes 2015-04-21 15:48:06 -07:00
cluster added cluster in place of pool, some other minor changes 2015-04-21 15:48:06 -07:00
common added cluster in place of pool, some other minor changes 2015-04-21 15:48:06 -07:00
datastore fixed minor queue glitches 2015-04-24 14:25:03 -07:00
eventbus fixed import path issue 2015-04-07 22:47:40 -07:00
parser added cluster in place of pool, some other minor changes 2015-04-21 15:48:06 -07:00
queue fixed minor queue glitches 2015-04-24 14:25:03 -07:00
remote added cluster in place of pool, some other minor changes 2015-04-21 15:48:06 -07:00
server fixed minor queue glitches 2015-04-24 14:25:03 -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 fixed minor queue glitches 2015-04-24 14:25:03 -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 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 = ""