File tree 4 files changed +41
-3
lines changed
4 files changed +41
-3
lines changed Original file line number Diff line number Diff line change @@ -41,4 +41,24 @@ application.pid
41
41
* .orig
42
42
43
43
# integrate test
44
- integrate_test.sh
44
+ integrate_test.sh
45
+
46
+ # production of quickstart testing
47
+ cmd /layotto /layotto
48
+ cmd /layotto /nohup.out
49
+ cmd /layotto_multiple_api /layotto
50
+ cmd /layotto_multiple_api /nohup.out
51
+ default.etcd /
52
+ demo /configuration /common /client
53
+ demo /file /client
54
+ demo /flowcontrol /client
55
+ demo /lock /redis /client
56
+ demo /pubsub /redis /client /publisher
57
+ demo /pubsub /redis /server /nohup.out
58
+ demo /pubsub /redis /server /subscriber
59
+ demo /sequencer /common /client
60
+ demo /state /common /client
61
+ etc /script /mdx
62
+ etcd
63
+ layotto_wasmer
64
+ nohup.out
Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ clean:
243
243
# # all: Run format codes, check codes, build Layotto codes for host platform with one command
244
244
# ==============================================================================
245
245
.PHONY : all
246
- all : format check.style check.unit check.lint build
246
+ all : clean format check style.quickstart clean
247
247
248
248
# ==============================================================================
249
249
# Usage
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ sh etc/script/download_etcd.sh
53
53
# release all resources
54
54
release_resource () {
55
55
# kill processes
56
- processes=" layotto layotto_wasmer etcd go"
56
+ processes=" layotto layotto_wasmer etcd server client go"
57
57
for key in ${processes} ; do
58
58
if killall $key ; then
59
59
echo " $key released"
Original file line number Diff line number Diff line change @@ -62,6 +62,24 @@ go.clean:
62
62
@echo " ===========> Cleaning all build output"
63
63
@rm -rf $(OUTPUT_DIR )
64
64
@rm -rf $(ROOT_DIR ) /cover.out
65
+ @rm -f cmd/layotto/layotto
66
+ @rm -f cmd/layotto/nohup.out
67
+ @rm -f cmd/layotto_multiple_api/layotto
68
+ @rm -f cmd/layotto_multiple_api/nohup.out
69
+ @rm -rf default.etcd/
70
+ @rm -f demo/configuration/common/client
71
+ @rm -f demo/file/client
72
+ @rm -f demo/flowcontrol/client
73
+ @rm -f demo/lock/redis/client
74
+ @rm -f demo/pubsub/redis/client/publisher
75
+ @rm -f demo/pubsub/redis/server/nohup.out
76
+ @rm -f demo/pubsub/redis/server/subscriber
77
+ @rm -f demo/sequencer/common/client
78
+ @rm -f demo/state/common/client
79
+ @rm -f etc/script/mdx
80
+ @rm -f etcd
81
+ @rm -f layotto_wasmer
82
+ @rm -f nohup.out
65
83
66
84
.PHONY : go.lint.verify
67
85
go.lint.verify :
You can’t perform that action at this time.
0 commit comments