2015-04-08 23:59:57 +00:00
|
|
|
Highly experimental branch that implements the following features:
|
2014-07-14 02:53:59 +00:00
|
|
|
|
2015-04-08 23:59:57 +00:00
|
|
|
* Pluggable database backends
|
|
|
|
* Pluggable queue
|
|
|
|
* Matrix builds
|
|
|
|
* Build plugins
|
|
|
|
* New Yaml syntax
|
|
|
|
* and more ...
|
2014-11-10 08:24:47 +00:00
|
|
|
|
2015-04-08 23:59:57 +00:00
|
|
|
Running Drone:
|
2014-11-10 08:24:47 +00:00
|
|
|
|
2014-08-02 18:21:39 +00:00
|
|
|
```
|
2015-04-08 23:59:57 +00:00
|
|
|
./drone --config="/path/to/config.toml"
|
2014-09-03 07:23:36 +00:00
|
|
|
```
|
2014-08-02 18:21:39 +00:00
|
|
|
|
2015-04-08 23:59:57 +00:00
|
|
|
Configuring Drone:
|
2015-02-19 18:20:14 +00:00
|
|
|
|
2014-09-03 07:23:36 +00:00
|
|
|
```toml
|
2014-10-11 21:30:51 +00:00
|
|
|
[server]
|
2015-04-16 22:15:05 +00:00
|
|
|
addr = ":80"
|
|
|
|
cert = ""
|
|
|
|
key = ""
|
2014-10-11 21:30:51 +00:00
|
|
|
|
2014-10-12 03:33:06 +00:00
|
|
|
[session]
|
2015-04-16 22:15:05 +00:00
|
|
|
secret = ""
|
|
|
|
expires = ""
|
2014-10-12 03:33:06 +00:00
|
|
|
|
2014-10-01 19:01:02 +00:00
|
|
|
[database]
|
2015-04-16 22:15:05 +00:00
|
|
|
path = "/etc/drone/drone.db"
|
2014-09-07 21:55:37 +00:00
|
|
|
|
2014-12-10 14:57:39 +00:00
|
|
|
[docker]
|
2015-04-16 22:15:05 +00:00
|
|
|
cert = ""
|
|
|
|
key = ""
|
|
|
|
nodes = [
|
2015-04-08 23:59:57 +00:00
|
|
|
"unix:///var/run/docker.sock",
|
|
|
|
"unix:///var/run/docker.sock"
|
2014-09-07 21:55:37 +00:00
|
|
|
]
|
|
|
|
|
2015-04-08 23:59:57 +00:00
|
|
|
[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 = ""
|
2014-09-03 07:23:36 +00:00
|
|
|
```
|