mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at jcs 24 lines 550 B view raw
1image: registry.gitlab.com/muttmua/mutt/ubuntu:18.04 2 3stages: 4 - build 5 - deploy 6 7build: 8 stage: build 9 script: 10 - ./prepare --disable-dependency-tracking --enable-gpgme --enable-sidebar --enable-compressed --enable-pop --enable-imap --enable-smtp --enable-debug --enable-hcache --enable-autocrypt --with-sqlite3 --with-gnutls 11 - make -j 12 13pages: 14 stage: deploy 15 script: 16 - ./prepare 17 - make update-doc 18 - mkdir -p public 19 - cp doc/manual.html public/manual-dev.html 20 artifacts: 21 paths: 22 - public 23 only: 24 - master