From 2fa50d4f6290a39e492043eaeed8ede8e26ce62d Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Thu, 4 Jul 2019 06:17:11 +0200 Subject: Update CI settings --- semaphoreci.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 semaphoreci.sh (limited to 'semaphoreci.sh') diff --git a/semaphoreci.sh b/semaphoreci.sh new file mode 100755 index 0000000..09f7aa7 --- /dev/null +++ b/semaphoreci.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +STACK=$SEMAPHORE_CACHE_DIR/stack + +setup() { + if [ ! -e "$STACK" ] + then + curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C $SEMAPHORE_CACHE_DIR '*/stack' + fi + $STACK --no-terminal setup +} + +setup_test() { + $STACK --no-terminal test --only-snapshot +} + +test() { + $STACK --no-terminal test --pedantic +} + +setup_lint() { + $STACK --no-terminal install hlint +} + +lint() { + $STACK --no-terminal exec hlint -- src tests +} + +$1 -- cgit v1.2.3