aboutsummaryrefslogblamecommitdiffstats
path: root/.builds/alpine-edge.yml
blob: 5edd26a554bb7db4f42ebe42bb0d216003a5ab6a (plain) (tree)
1
2
3
4
5
6
7
8
9
   
                  
         
      
         
               
         
            
        
                                    

                
                          
         
                                                                                                                                              
                                                                    
      
            
                  
              
                                       
           


                        
                         

                                                                                           
                            
                    
                                
---
image: alpine/edge
packages:
  - go
  - gnupg
  - notmuch-dev
  - scdoc
  - valgrind
sources:
  - "https://git.sr.ht/~rjarry/aerc"
environment:
  DESTDIR: ./out
  GOFLAGS: "-tags=notmuch"
  CC: gcc
  CFLAGS: -O2 -g -Wall -Wextra -Wconversion -Warith-conversion -Werror -Wformat-security -Wstack-protector -fstack-protector-strong -fanalyzer
  FILTERS_TEST_PREFIX: valgrind --leak-check=full --error-exitcode=1
tasks:
  - build: |
      make -C aerc
  - install: |
      make -C aerc install checkinstall
  - test: |
      make -C aerc tests
  - lint: |
      make -C aerc lint
  - ancient-go-version: |
      curl -O https://dl-cdn.alpinelinux.org/alpine/v3.16/community/x86_64/go-1.18.7-r0.apk
      sudo apk add ./go-1.18.7-r0.apk
      make -C aerc clean all
  - check-patches: |
      make -C aerc check-patches