diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-07-07 18:51:51 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-07-07 18:51:51 -0400 |
commit | c79577d37675c8d9ed3355c532a215377e76d3b2 (patch) | |
tree | 1a6fb323c63c48f6771173777dba4e6579724ba4 /.build.yml | |
parent | 363aab5cc19135599cae93f6c9c7abcd23c111c9 (diff) | |
download | aerc-c79577d37675c8d9ed3355c532a215377e76d3b2.tar.gz |
Add .build.yml
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..27b15ea --- /dev/null +++ b/.build.yml @@ -0,0 +1,24 @@ +image: alpine/edge +packages: +- go +- scdoc +sources: +- https://git.sr.ht/~sircmpwn/aerc +- https://git.sr.ht/~sircmpwn/annotatego +secrets: +- 52022781-b772-4d8d-b7fe-0d962a4947b6 +tasks: +- build: | + cd aerc + make +- test: | + cd aerc + go test ./... +- annotatego: | + cd annotatego + go build + sudo cp annotatego /usr/bin/ +- annotate: | + cd aerc + annotatego -v git.sr.ht/~sircmpwn/aerc... >annotations.json + ~/upload-annotations annotations.json sircmpwn aerc |