2018-06-06 04:16:27 +00:00
|
|
|
echo "Deleting artifacts from previous builds"
|
2018-06-06 04:33:47 +00:00
|
|
|
rm -f template_*.go
|
|
|
|
rm -f gen_*.go
|
|
|
|
rm -f tmpl_client/template_*.go
|
|
|
|
rm -f ./Gosora
|
2018-06-06 04:16:27 +00:00
|
|
|
|
2017-01-26 13:37:50 +00:00
|
|
|
echo "Generating the dynamic code"
|
|
|
|
go generate
|
2018-03-31 05:25:27 +00:00
|
|
|
|
2018-06-06 04:33:47 +00:00
|
|
|
echo "Building the router generator"
|
|
|
|
go build ./router_gen
|
|
|
|
echo "Running the router generator"
|
|
|
|
router_gen.exe
|
|
|
|
|
|
|
|
echo "Building the query generator"
|
|
|
|
go build ./query_gen
|
|
|
|
echo "Running the query generator"
|
|
|
|
query_gen.exe
|
|
|
|
|
2017-01-26 13:37:50 +00:00
|
|
|
echo "Building Gosora"
|
|
|
|
go build -o Gosora
|
2018-03-31 05:25:27 +00:00
|
|
|
|
2018-03-21 05:56:33 +00:00
|
|
|
echo "Building the templates"
|
|
|
|
./Gosora -build-templates
|
2018-03-31 05:25:27 +00:00
|
|
|
|
|
|
|
echo "Building Gosora... Again"
|
|
|
|
go build -o Gosora
|
|
|
|
|
2017-01-26 13:37:50 +00:00
|
|
|
echo "Running Gosora"
|
2017-01-10 06:51:28 +00:00
|
|
|
./Gosora
|