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
|
2020-03-22 23:14:08 +00:00
|
|
|
rm -f tmpl_*.go
|
2018-06-06 04:33:47 +00:00
|
|
|
rm -f gen_*.go
|
2020-03-22 23:14:08 +00:00
|
|
|
rm -f tmpl_client/template_*
|
|
|
|
rm -f tmpl_client/tmpl_*
|
2018-06-06 04:33:47 +00:00
|
|
|
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-07-24 06:52:46 +00:00
|
|
|
echo "Building the router generator"
|
2019-07-10 15:33:07 +00:00
|
|
|
go build -ldflags="-s -w" -o RouterGen "./router_gen"
|
2018-07-24 06:52:46 +00:00
|
|
|
echo "Running the router generator"
|
|
|
|
./RouterGen
|
|
|
|
|
|
|
|
echo "Building the query generator"
|
2019-07-10 15:33:07 +00:00
|
|
|
go build -ldflags="-s -w" -o QueryGen "./cmd/query_gen"
|
2018-07-24 06:52:46 +00:00
|
|
|
echo "Running the query generator"
|
|
|
|
./QueryGen
|
2018-06-06 04:33:47 +00:00
|
|
|
|
2019-02-10 05:52:26 +00:00
|
|
|
echo "Generating the JSON handlers"
|
|
|
|
easyjson -pkg common
|
|
|
|
|
2017-01-26 13:37:50 +00:00
|
|
|
echo "Building Gosora"
|
2019-07-10 15:33:07 +00:00
|
|
|
go build -ldflags="-s -w" -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"
|
2019-07-10 15:33:07 +00:00
|
|
|
go build -ldflags="-s -w" -o Gosora
|
2018-03-31 05:25:27 +00:00
|
|
|
|
2017-01-26 13:37:50 +00:00
|
|
|
echo "Running Gosora"
|
2017-01-10 06:51:28 +00:00
|
|
|
./Gosora
|