13 lines
304 B
YAML
13 lines
304 B
YAML
image: fpco/stack-build:lts-13.21
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- stack build --copy-bins --local-bin-path $(pwd) --flag uniworx:-library-only --flag uniworx:-dev --flag uniworx:pedantic
|
|
artifacts:
|
|
paths:
|
|
- uniworx
|
|
cache:
|
|
key: "%CI_COMMIT_REF_SLUG"
|
|
paths:
|
|
- .stack-work |