buildbot/README.md

25 lines
500 B
Markdown
Raw Permalink Normal View History

2019-04-02 22:03:28 +08:00
# Buildbot
## Typical autobuild.yaml format
```
2019-04-06 20:59:27 +08:00
type:
auto (by package name)
git (this is a git package and will check source for updates)
manual (this package will only be updated when new release is pushed)
cleanbuild:
true / false
timeout:
30 (30 mins, int only)
2019-10-01 17:43:37 +08:00
priority:
0 (default, higher is more important)
2019-09-05 22:42:08 +08:00
extra:
2019-04-06 20:59:27 +08:00
- update:
- /bin/true
- prebuild:
- echo "Hello World!"
- postbuild:
- ls > list
- failure:
- rm file
```