diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 24abfc0..9677cd6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,14 @@ image: haskell:latest +variables: + STACK_ROOT: "${CI_PROJECT_DIR}/.stack" + STACK_OPTS: "--system-ghc" + cache: paths: + - .stack - .stack-work + - target - output - node_modules - bower_components @@ -12,7 +18,7 @@ pages: script: - apt-get update - apt-get install -y curl - - curl -sL https://deb.nodesource.com/setup_7.x | bash + - curl -sL https://deb.nodesource.com/setup_8.x | bash - apt-get install -y xz-utils make nodejs - npm install bower - npm install purescript |