aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 0f6b6ccf170977fde7bd6e7266e7e2a344540363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
image: haskell:7.10.3

pages:
  cache:
    paths:
      - _cache
      - .stack
  before_script:
    - export STACK_ROOT=`pwd`/.stack
    - stack install --only-dependencies
    - stack build
  script:
    - stack exec site build
  artifacts:
    paths:
      - public
  only:
    - master