blob: 1a50ca3d71348b4d24cf79a058635513fa43c9a6 (
plain) (
blame)
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
|
stages:
- build
before_script:
- cabal update
- mkdir -p ../cabal-helper.sdist
- ls -l ..
- cabal sdist --output-directory=../cabal-helper.sdist
- rm -f cabal.sandbox.config && cabal sandbox init
- cp cabal.sandbox.config ../cabal-helper.sdist
- cd ../cabal-helper.sdist
after_script:
- rm -rf "$CI_PROJECT_DIR"/../cabal-helper.sdist
.job_template: &common_script
script:
- echo $PWD
- ghc-pkg list
- cabal install --user --only-dependencies -j2 --force-reinstalls --enable-tests --enable-documentation
- which cabal
- cabal --version
- cabal configure --enable-tests
- cabal build -j2
- ghc-pkg list
- which cabal
- cabal --version
- ./dist/build/spec/spec
- cabal haddock
job-ghc801:
image: haskell:8.0.1
stage: build
<<: *common_script
job-ghc710:
image: haskell:7.10.3
stage: build
<<: *common_script
job-ghc708:
image: haskell:7.8.4
stage: build
<<: *common_script
|