-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
27 lines (19 loc) · 824 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
all: test
test: test_heatclient
clean:
find . -name "*.pyc" -type f -print -delete
test_heatclient:
cd heat/heatclient-test && \
time python ./test.py --sutd
test_heatclient_tcserious:
cd heat/heatclient-test && \
time python ./test.py --sutd -t ../templates/ponytest_stack.yml -i tcserious_image-2014060416
jenkins4:
cd heat/heatclient-test && \
time python ./test.py --sutd -t ../templates/jenkins.stack.yml --stackname jenkins4.stack --hostname jenkins4
chefclient:
cd heat/heatclient-test && \
./test.py --sutd --template ../templates/chef_client_stack.yml --stackname chef2 --role chef-client --image tcserious_image-2014060416
npf4:
cd heat/heatclient-test && \
./test.py --sutd --template ../templates/chef_client_stack.yml --stackname npf4 --role nginx-php-fpm --image tcserious_image-2014060416