Skip to content

Commit 09624b3

Browse files
committed
Merge branch 'master' into master-void
2 parents 79c1969 + b6d0f64 commit 09624b3

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dist
2+
cabal.sandbox.config
3+
.cabal-sandbox
4+
.stack-work

.travis.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
sudo: false
2+
3+
env:
4+
- CABALVER=1.18 GHCVER=7.8.4
5+
- CABALVER=1.22 GHCVER=7.10.1
6+
7+
before_install:
8+
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH
9+
- travis_retry cabal update
10+
11+
install:
12+
- cabal --version
13+
- echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"
14+
- cabal install --only-dependencies --enable-tests
15+
16+
script:
17+
- cabal configure --enable-tests -v2
18+
- cabal build
19+
- cabal test
20+
21+
addons:
22+
apt:
23+
sources:
24+
- hvr-ghc
25+
packages:
26+
- ghc-7.8.4
27+
- ghc-7.10.1
28+
- cabal-install-1.18
29+
- cabal-install-1.22

stack.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
flags:
2+
text-format:
3+
developer: false
4+
packages:
5+
- '.'
6+
extra-deps: []
7+
resolver: nightly-2015-08-12

0 commit comments

Comments
 (0)