No description
Find a file
2015-05-12 18:33:10 -07:00
cmd/drone-build still a wip. container that is launched to run a build 2015-05-12 18:32:46 -07:00
common backported 0.4 changes to existing database 2015-05-11 00:45:31 -07:00
datastore Fix Datastore mock and badge_test.go 2015-05-12 11:06:00 -06:00
eventbus pre-marshal websocket message to avoid possible race 2015-05-05 19:46:26 -07:00
parser hook honors branch filter 2015-04-30 10:39:16 -07:00
queue backported 0.4 changes to existing database 2015-05-11 00:45:31 -07:00
remote backported 0.4 changes to existing database 2015-05-11 00:45:31 -07:00
runner backported 0.4 changes to existing database 2015-05-11 00:45:31 -07:00
server Fix Datastore mock and badge_test.go 2015-05-12 11:06:00 -06:00
settings backported 0.4 changes to existing database 2015-05-11 00:45:31 -07:00
.drone.yml updated .drone.yml to support new syntax 2015-05-09 01:41:24 -07:00
.gitignore fixed some race conditions and cpu locking 2015-05-05 20:59:07 -07:00
drone.go backported 0.4 changes to existing database 2015-05-11 00:45:31 -07:00
LICENSE initial public commit 2014-02-07 03:10:01 -07:00
Makefile ability to get netrc from remote 2015-04-28 14:39:48 -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 = ""