We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bdef3a commit a559410Copy full SHA for a559410
.circleci/config.yml
@@ -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