-
Notifications
You must be signed in to change notification settings - Fork 13
/
Makefile
28 lines (22 loc) · 927 Bytes
/
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
.PHONY: tubcommit
QUICK=-Dmaven.test.skip -Dmaven.javadoc.skip -Dsource.skip -Dassembly.skipAssembly=true -DskipTests
tubcommit:
cd ../tub-rmit-collaboration ; cat emptyline.txt >> README.md
cd ../tub-rmit-collaboration ; git commit -m "regression test" -a ; git push
quick-matsim:
cd ../matsim && make matsim-quick
quick: quick-matsim
mvn clean install ${QUICK} --offline
cd examples/bushfire ; mvn test -Dtest=MainCampbellsCreek01Test
normal: quick-matsim
mvn clean install ${QUICK}
cd integrations/abm-jack ; mvn clean install
cd examples/bushfire-tutorial ; mvn clean install
cd examples/bushfire-tutorial ; mvn test -Dmaven.test.redirectTestOutputToFile
conservation:
mvn clean install -N
cd util && mvn clean install
cd integrations/bdi-abm && mvn clean install
cd integrations/abm-jill && mvn clean install
cd integrations/bdi-gams && mvn clean install
cd examples/conservation && mvn clean install