-
Notifications
You must be signed in to change notification settings - Fork 0
/
recompile-all
executable file
·33 lines (30 loc) · 983 Bytes
/
recompile-all
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
#!/bin/sh
set -e
set -x
cd sandbox
cabal sandbox hc-pkg unregister postgresql-native-connection || true
cabal sandbox hc-pkg unregister postgresql-native-openssl || true
cd ..
cd postgresql-native-core
cabal clean
cabal install --only-dependencies --enable-documentation --haddock-internal --haddock-hyperlink-source
cabal configure
cabal install --enable-documentation --haddock-internal --haddock-hyperlink-source
cd ..
cd postgresql-native-connection
cabal clean
cabal install --only-dependencies --enable-documentation --haddock-internal --haddock-hyperlink-source
cabal configure
cabal install --enable-documentation --haddock-internal --haddock-hyperlink-source
cd ..
cd postgresql-native-openssl
cabal clean
cabal install --only-dependencies --enable-documentation --haddock-internal --haddock-hyperlink-source
cabal configure
cabal install --enable-documentation --haddock-internal --haddock-hyperlink-source
cd ..
cd scratch
cabal clean
cabal configure
cabal build
cd ..