diff options
author | Ben Sima <ben@bsima.me> | 2020-11-19 21:36:07 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-11-19 21:36:23 -0500 |
commit | 8b92ecb505675d157c925bc7b6980a6e74831033 (patch) | |
tree | ff46daa1ac4da874ed8445393953640117ab25f3 /Biz/Bild/ShellHook.sh | |
parent | 624df87c81f399ba18e5f625e680302b687d168a (diff) |
add ci function to replace builds.sr.ht
Diffstat (limited to 'Biz/Bild/ShellHook.sh')
-rw-r--r-- | Biz/Bild/ShellHook.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Biz/Bild/ShellHook.sh b/Biz/Bild/ShellHook.sh index 7f82286..019c5a3 100644 --- a/Biz/Bild/ShellHook.sh +++ b/Biz/Bild/ShellHook.sh @@ -3,6 +3,7 @@ function help() { echo "bizdev" | figlet | lolcat echo "" echo " bild compile code" + echo " ci run all builds and tests" echo " deps manage dependencies with niv" echo " ghci start ghci with correct options" echo " help show this message" @@ -95,4 +96,26 @@ function ship() { done } +# Poor man's ci +function ci() { + set -e + lint + stuff=( + Biz/Pie.hs + Biz/Pie.nix + Biz/Cloud.nix + Biz/Dev.nix + Que/Site.hs + Que/Host.hs + Que/Prod.nix + Hero/Host.hs + Hero/Node.hs + Hero/Prod.nix + ) + for thing in ${stuff[@]} + do + bild $thing + done +} + help |