Skip to content

Commit f236baa

Browse files
committed
Convert main Makefile into a wrapper of 'site' command
The 'site' command is more versatile than the Makefile. It's retained just to avoid breaking centos-ci scripts. Once centos-ci scripts are updated, this Makefile can be removed. Signed-off-by: Xavi Hernandez <[email protected]>
1 parent 9f6afdb commit f236baa

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
.PHONY: test statedump clean yamllint
22

33
test:
4-
@$(MAKE) -C playbooks setup.site
4+
@./site create test
5+
@./site build test
56

67
statedump:
7-
@$(MAKE) -C playbooks nodes.statedump
8+
@./site statedump
89

910
clean:
10-
@$(MAKE) -C playbooks clean
11+
@./site destroy test
1112

1213
yamllint:
13-
@yamllint -c .yamllint .
14+
@./site yamllint

0 commit comments

Comments
 (0)