-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
32 lines (27 loc) · 839 Bytes
/
circle.yml
File metadata and controls
32 lines (27 loc) · 839 Bytes
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
# This is the configuration file for circleci.com (CI which builds the site)
machine:
pre:
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.6 20
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.6 20
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 10
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 10
general:
branches:
ignore:
- master
# Manually install to avoid install conflicts
# cf. https://github.com/jaspervdj/hakyll/issues/340#issuecomment-96101869
dependencies:
override:
- bundle install
- cabal update
- cabal install --dependencies-only
# Compile pages during the test stage
test:
post:
- make
deployment:
production:
branch: source
commands:
- "make deploy"