mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
Woodpecker is a community fork of the Drone CI system.
d13c1caebf
1. server/builds.go:92 uses SetStatus(). 2. The other APIs we talked about: Status(), StatusList(), we were able to move out. 3. The repo_del_test.go code merge into repo_test.go 4. Unit tests for the other build APIs added. - We are facing a crash in: github.com/drone/drone/datastore/bolt.(*DB).SetBuildTask(0xc208056080, 0x5e15d0, 0x15, 0x1, 0xc208036940, 0x0, 0x0) which seems to be related to the note in: build.go:207 (// TODO check index to prevent nil pointer / panic) 5. With these new tests we get over 86% plus test cover for bolt package. |
||
---|---|---|
builder | ||
common | ||
datastore | ||
eventbus | ||
parser | ||
remote | ||
server | ||
settings | ||
.drone.yml | ||
.gitignore | ||
AUTHORS | ||
drone.go | ||
LICENSE | ||
Makefile | ||
README.md |
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 = ""