-
Notifications
You must be signed in to change notification settings - Fork 137
/
Makefile
56 lines (41 loc) · 1.37 KB
/
Makefile
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
ERL=erl
REBAR=rebar3
GIT = git
REBAR_VER = 3.6.2
DB_CONFIG_DIR=priv/test_db_config
.PHONY: test
all: compile
compile:
@$(REBAR) compile
rebar_src:
@rm -rf $(PWD)/rebar_src
@$(GIT) clone https://github.com/erlang/rebar3.git rebar_src
@$(GIT) -C rebar_src checkout tags/$(REBAR_VER)
@cd $(PWD)/rebar_src/; ./bootstrap
@cp $(PWD)/rebar_src/rebar3 $(PWD)
@rm -rf $(PWD)/rebar_src
get-deps:
@$(REBAR) upgrade
deps:
@$(REBAR) compile
.PHONY: dialyze
dialyze:
@$(REBAR) dialyzer || [ $$? -eq 1 ];
clean:
@$(REBAR) clean
rm -fv erl_crash.dump
test:
@$(REBAR) eunit
compile_db_test:
@$(REBAR) as test, boss_test do clean, compile
test_db_mock: compile_db_test
$(ERL) -pa _build/test+boss_test/lib/*/ebin -run boss_db_test start -config $(DB_CONFIG_DIR)/mock -noshell
test_db_mysql: compile_db_test
$(ERL) -pa _build/test+boss_test/lib/*/ebin -run boss_db_test start -config $(DB_CONFIG_DIR)/mysql -noshell
test_db_pgsql: compile_db_test
$(ERL) -pa _build/test+boss_test/lib/*/ebin -run boss_db_test start -config $(DB_CONFIG_DIR)/pgsql -noshell
test_db_mongodb: compile_db_test
echo "db.boss_db_test_models.remove();"|mongo boss_test
$(ERL) -pa _build/test+boss_test/lib/*/ebin -run boss_db_test start -config $(DB_CONFIG_DIR)/mongodb -noshell
test_db_riak: compile_db_test
$(ERL) -pa _build/test+boss_test/lib/*/ebin -run boss_db_test start -config $(DB_CONFIG_DIR)/riak -noshell