summaryrefslogtreecommitdiff
path: root/.builds/alpine-edge.yml
blob: e256f61e83ade63b4be1f355d374f14c94c2d2ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
image: alpine/edge
packages:
  - go
  - scdoc
sources:
  - "https://git.sr.ht/~rjarry/aerc"
environment:
  DESTDIR: ./out
tasks:
  - checkfmt: |
      cd aerc
      make checkfmt
  - build: |
      cd aerc
      make
  - install: |
      cd aerc
      make install
      make checkinstall
  - test: |
      cd aerc
      go test ./...