forked from theam/haskell-do
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.hs
125 lines (107 loc) · 4.54 KB
/
Build.hs
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/usr/bin/env stack
-- stack --resolver lts-8.11 --install-ghc runghc --package turtle-1.3.2 --package foldl --package text-1.2.2.2 --package system-filepath-0.4.13.3
{-# LANGUAGE OverloadedStrings #-}
import Prelude hiding (FilePath)
import Turtle
import Control.Monad (when)
import Data.Text as T
import Data.Text (Text)
import System.Info (os)
import Data.Char (isNumber)
import Data.List (isInfixOf)
import qualified Control.Foldl as Foldl
import Filesystem.Path.CurrentOS
import Filesystem
clientStackYaml = "client-stack.yaml"
serverStackYaml = "stack.yaml"
main = do
projectDirectory <- pwdAsText
BuildCommand all gui core orchestrator run pkg <- options "Haskell.do build file" buildSwitches
if all
then buildAll projectDirectory
else do
when gui $ buildGUI projectDirectory
when core $ buildCore projectDirectory
when orchestrator $ buildOrchestrator projectDirectory
when run $ runHaskellDo projectDirectory
when pkg $ buildAndPackage projectDirectory
buildSwitches :: Parser BuildCommand
buildSwitches = BuildCommand
<$> switch "all" 'a' "Build all subprojects, without running Haskell.do"
<*> switch "gui" 'g' "Build GUI"
<*> switch "core" 'c' "Build processing/compilation core"
<*> switch "orchestrator" 'o' "Build orchestrator"
<*> switch "run" 'r' "Run Haskell.do"
<*> switch "package" 'p' "Package Haskell.do for release (caution: removes .stack-work before re-building)"
buildAll projectDirectory = do
buildCore projectDirectory
buildGUI projectDirectory
buildOrchestrator projectDirectory
buildCore :: Text -> IO ()
buildCore pdir = do
echo "Building core"
exitCode <- shell ("stack build --stack-yaml=" <> serverStackYaml) ""
when (exitCode /= ExitSuccess) (error "Core: Build failed")
return ()
buildGUI pdir =
if isWindows os
then die "GHCJS currently does not support Windows, please try from a *nix machine."
else do
echo "Building GUI"
shell "mkdir -p static" ""
Just directory <- fold (inshell ("stack path --stack-yaml=" <> clientStackYaml <> " --local-install-root") Turtle.empty) Foldl.head
Just coreBinDirectory <- fold (inshell "stack path --local-install-root" Turtle.empty) Foldl.head
exitCode <- shell ("stack build --stack-yaml=" <> clientStackYaml) ""
when (exitCode /= ExitSuccess) (error "GUI: Build failed")
shell "rm -rf static/out.jsexe/*.js" ""
shell "rm -rf static/out.jsexe/*.externs" ""
shell "rm -rf static/out.jsexe/*.stats" ""
shell "rm -rf static/out.jsexe/*.webapp" ""
shell ("cp -R " <> lineToText directory <> "/bin/haskell-do.jsexe/*.js static/out.jsexe") ""
shell ("cp -R static " <> lineToText coreBinDirectory <> "/bin") ""
return ()
buildAndPackage projectDirectory = do
removeTree ".stack-work"
shell "mkdir -p .build-dist" ""
removeTree ".build-dist"
shell "mkdir -p builds" ""
shell "rm -rf builds/*" ""
buildAll projectDirectory
let currentOS = System.Info.os
packageYamlContent <- Prelude.readFile "package.yaml"
let osName = if isOSX currentOS
then "darwin"
else "linux-x86_64"
version = T.dropWhile (not . isNumber)
. T.dropWhile (/= ':')
. Prelude.head
. Prelude.filter (T.isInfixOf "version:")
$ T.lines (T.pack packageYamlContent)
createDirectory True ".build-dist"
rename "static" (".build-dist" </> "static")
(_, binPath) <- shellStrict "stack exec which haskell-do" ""
case textToLine binPath of
Just path -> copyFile (fromText . lineToText $ path) (".build-dist" </> "haskell-do")
Nothing -> return ()
shell ("cd .build-dist; zip -r ../builds/haskell-do_" <> osName <> "_v" <> version <> ".zip *") ""
rename (".build-dist" </> "static") "static"
buildOrchestrator pdir =
echo ""
runHaskellDo pdir = do
echo "Running Haskell.do"
shell ("stack exec haskell-do --stack-yaml=" <> serverStackYaml <> " -- 8080") ""
return ()
-- Helpers
isWindows operatingSystem = "mingw" `T.isPrefixOf` T.pack operatingSystem
isOSX operatingSystem = "darwin" `T.isPrefixOf` T.pack operatingSystem
makeTextPath = T.pack . encodeString . fromText
pwdAsText :: IO Text
pwdAsText = T.pack . encodeString <$> pwd
data BuildCommand = BuildCommand
{ buildCommandAll :: Bool
, buildCommandGui :: Bool
, buildCommandCore :: Bool
, buildCommandOrchestrator :: Bool
, buildCommandRun :: Bool
, buildCommandPackage :: Bool
}