summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2017-12-21 15:23:49 +0100
committerGitHub <noreply@github.com>2017-12-21 15:23:49 +0100
commitc29b344ceba1214548a194d885a1d3f2e819784e (patch)
treee18ef69947a2cd282a1aef3a26665da89020c22b /.circleci
parentd011b17eec0f55b7af6603aab94e31003a438496 (diff)
downloadhakyll-c29b344ceba1214548a194d885a1d3f2e819784e.tar.gz
Cabalize website
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml2
-rwxr-xr-x.circleci/tickle.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 8aaf463..4bbc884 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -14,7 +14,7 @@ jobs:
# We set jobs to 1 here because that prevents Out-Of-Memory exceptions
# while compiling dependencies.
name: 'Install dependencies'
- command: '.circleci/tickle.sh cabal install --only-dependencies --enable-tests --jobs=1'
+ command: '.circleci/tickle.sh cabal install --only-dependencies --enable-tests --jobs=1 --flags="+buildWebsite"'
- run:
name: 'Build and run tests'
command: 'cabal test'
diff --git a/.circleci/tickle.sh b/.circleci/tickle.sh
index 5071bb4..195c29c 100755
--- a/.circleci/tickle.sh
+++ b/.circleci/tickle.sh
@@ -3,7 +3,7 @@ set -o nounset -o errexit -o pipefail
function tickle() {
while [ true ]; do
- echo "[$(date +%H:%M:%S)"] Tickling...
+ echo "[$(date +%H:%M:%S)] Tickling..."
sleep 60
done
}