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

cache:
  paths:
  - .stack-work
  - output

pages:
  script:
    - apt-get update
    - apt-get install -y xz-utils make
    - export STACK_ROOT="$(pwd)/.stack"
    - stack setup
    - stack build
    - stack exec cooking build
  artifacts:
    paths:
      - public
  only:
    - master