Skip to content

Commit a559410

Browse files
committed
Circle ci
1 parent 7bdef3a commit a559410

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.circleci/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2.0
2+
jobs:
3+
build_gcc_latest:
4+
docker:
5+
- image: fpco/stack-build:lts
6+
steps:
7+
- checkout
8+
- run:
9+
name: Set up
10+
command: |
11+
sudo apt-get -y update
12+
sudo add-apt-repository -y ppa:hvr/ghc
13+
sudo apt-get install -y haskell-platform
14+
wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add -
15+
alias llvm-config="llvm-config-4.0"
16+
wget -qO- https://get.haskellstack.org/ | sh
17+
stack build
18+
19+
20+
# git submodule sync; git submodule update --init # initialize git submodules

0 commit comments

Comments
 (0)