Skip to content

Commit c9915e6

Browse files
committed
Add gitlab ci and fix circle ci
1 parent acc7e3b commit c9915e6

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

.circleci/config.yml

-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ jobs:
44
build:
55
docker:
66
- image: fpco/stack-build:lts-12.9
7-
branches:
8-
only:
9-
- master
107
steps:
118
- checkout
129

.gitlab-ci.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
image: haskell:8.4.3
2+
cache:
3+
key: ${CI_COMMIT_REF_SLUG}
4+
paths:
5+
- .stack-work/
6+
- .stack-root/
7+
before_script:
8+
- stack install --only-dependencies
9+
stages:
10+
- test
11+
test:
12+
stage: test
13+
only:
14+
- master
15+
script:
16+
- stack test

0 commit comments

Comments
 (0)