forked from ndmitchell/neil
-
Notifications
You must be signed in to change notification settings - Fork 1
/
github.sh
87 lines (77 loc) · 2.79 KB
/
github.sh
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/bin/bash
# This script is invoked from my GitHub-CI commands
# It bootstraps to grab the 'neil' tool and run 'neil test'
set -e # exit on errors
set -x # echo each line
retry(){
($@) && return
sleep 15
($@) && return
sleep 15
$@
}
timer(){
set +x
local before=$(date +%s)
set -x
$@
set +x
local after=$(date +%s)
echo Timing: $(expr $after - $before) spent doing $@
set -x
}
# make sure we hlint check before running the tests, in case they generate non-compliant hlint
if [ "$HLINT_ARGUMENTS" = "" ]; then
HLINT_ARGUMENTS=.
fi
# Don't run on Mac, since that often exceeds download limits for hlint itself
if [ "$OS" != "macOS" ]; then
curl -sSL https://raw.github.com/ndmitchell/hlint/master/misc/run.sh | sh -s $HLINT_ARGUMENTS --with-group=extra --with-group=future
fi
ghc --version
cabal --version
haddock --version
if [ "$INSTALL_FSATRACE" = "true" ]; then
case $OS in
Windows*|windows*)
curl https://github.com/ndmitchell/shake/releases/download/fsatrace-1/fsatrace.zip -L -o fsatrace.zip
# Important that fsatrace.exe is not in the Shake root since otherwise fsatrace*.dll is reported as
# an untracked read - so we put 'fsatrace' one directory up.
7z x fsatrace.zip -o../fsatrace
export PATH=$PATH:`pwd`/../fsatrace
;;
*)
git clone https://github.com/jacereda/fsatrace.git .fsatrace
(cd .fsatrace && make)
export PATH=$PATH:`pwd`/.fsatrace
;;
esac
fsatrace v - -- echo fsatrace works
fi
if [ "$HASKELL_DEPENDENCIES" != "" ]; then
retry cabal v2-build $HASKELL_DEPENDENCIES
fi
# Install dependencies
retry cabal v2-build --only-dependencies --enable-tests --haddock-hoogle $CABALFLAGS
# Install the neil tool
retry git clone -b $BRANCH --depth=1 "https://github.com/$GITHUB_USER/neil" .neil
(cd .neil && retry cabal v2-install --allow-newer --flags=small --installdir=. --install-method=copy --overwrite-policy=always)
if [ "$MAKE_RELEASE" = "true" ]; then
.neil/neil bin
cabal v2-sdist
cp dist-newstyle/sdist/*.tar.gz dist/
else
timer .neil/neil test --install --cabal2
# Make sure the output is on $PATH
export PATH="$HOME/.cabal/bin:/home/runner/.cabal/bin:/c/Users/runneradmin/AppData/Roaming/cabal/bin:$PATH"
# Run any additional tests, written in Haskell
if [ -e travis.hs ]; then
# We want to run travis.hs with the extra package in scope
# Best way I can do that is by hijacking the Main.hs of .neil
cp travis.hs .neil/src/Main.hs
(cd .neil && cabal v2-install --allow-newer --flags=small --installdir=. --install-method=copy --overwrite-policy=always)
.neil/neil
fi
# Check regenerating doesn't change anything
git diff --exit-code
fi