summaryrefslogtreecommitdiff
path: root/.builds/debian-stable.yml
blob: 1cc4d0a0ed1b8fd5a626f96772c3a0c1bda17d90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
image: debian/stable
packages:
  - golang
  - libnotmuch-dev
  - scdoc
sources:
  - "https://git.sr.ht/~rjarry/aerc"
environment:
  DESTDIR: ./out
  GOFLAGS: "-tags=notmuch"
tasks:
  - build: |
      cd aerc
      make
  - install: |
      cd aerc
      make install
      make checkinstall
  - test: |
      cd aerc
      go test ./...