aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: e232d2ed1f1c27a2beaff685ad12c95d7c48ca71 (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 Cooking build
  artifacts:
    paths:
      - public
  only:
    - master