mirror of
https://github.com/archlinux-jerry/buildbot
synced 2024-11-17 02:30:40 +08:00
22 lines
448 B
Markdown
22 lines
448 B
Markdown
# Buildbot
|
|
|
|
## Typical autobuild.yaml format
|
|
```
|
|
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)
|
|
extra:
|
|
- update:
|
|
- /bin/true
|
|
- prebuild:
|
|
- echo "Hello World!"
|
|
- postbuild:
|
|
- ls > list
|
|
- failure:
|
|
- rm file
|
|
```
|