summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: eb19e320773837172f19dd9e7bce1dee8795fb2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
image: registry.gitlab.com/muttmua/mutt/ubuntu:18.04

stages:
  - build
  - deploy

build:
  stage: build
  script:
    - ./prepare --disable-dependency-tracking --enable-gpgme --enable-sidebar --enable-compressed --enable-pop --enable-imap --enable-smtp --enable-debug --enable-hcache --with-gnutls
    - make -j

pages:
  stage: deploy
  script:
    - ./prepare
    - make update-doc
    - mkdir -p public
    - cp doc/manual.html public/manual-dev.html
  artifacts:
    paths:
      - public
  only:
    - master