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