-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
49 lines (40 loc) · 1.05 KB
/
.gitlab-ci.yml
File metadata and controls
49 lines (40 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
variables:
STORE_DIR: "${CI_PROJECT_DIR}/.cabal-store"
cache:
key: "$CI_JOB_NAME"
paths:
- .cabal-store
- dist-newstyle/cache
before_script:
- apt -qq update
- cabal update
test:9.2:
image: haskell:9.2
script:
- apt -qq -y install build-essential libssl-dev > /dev/null
- cabal --store-dir=$STORE_DIR test
test:9.0:
image: haskell:9.0
script:
- apt -qq -y install build-essential libssl-dev > /dev/null
- cabal --store-dir=$STORE_DIR test
test:8.10:
image: haskell:8.10
script:
- apt -qq -y install build-essential libssl-dev > /dev/null
- cabal --store-dir=$STORE_DIR test
test:8.8:
image: haskell:8.8
script:
- apt -qq -y install build-essential libssl-dev > /dev/null
- cabal --store-dir=$STORE_DIR test
test:8.6:
image: haskell:8.6
script:
- apt -qq -y install build-essential libssl-dev > /dev/null
- cabal --store-dir=$STORE_DIR new-test
test:8.4:
image: haskell:8.4
script:
- apt -qq -y install build-essential libssl-dev > /dev/null
- cabal --store-dir=$STORE_DIR new-test