-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
25 lines (19 loc) · 968 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
init:
pipenv install --python 3
update-from-requirements:
pipenv install -r ./molecule/requirements-dev.txt
molecule-docker-centos7:
ansible-galaxy collection install community.docker
MOLECULE_DISTRO=centos7 MOLECULE_TEST_ROLE=$(notdir $(CURDIR)) molecule converge -s docker
molecule-docker-fedora33:
ansible-galaxy collection install community.docker
MOLECULE_DISTRO=fedora33 MOLECULE_TEST_ROLE=$(notdir $(CURDIR)) molecule converge -s docker
molecule-docker-xenial:
ansible-galaxy collection install community.docker
MOLECULE_DISTRO=ubuntu1604 MOLECULE_TEST_ROLE=$(notdir $(CURDIR)) molecule converge -s docker
molecule-docker-beaver:
ansible-galaxy collection install community.docker
MOLECULE_DISTRO=ubuntu1804 MOLECULE_TEST_ROLE=$(notdir $(CURDIR)) molecule converge -s docker
molecule-docker-focal:
ansible-galaxy collection install community.docker
MOLECULE_DISTRO=ubuntu2004 MOLECULE_TEST_ROLE=$(notdir $(CURDIR)) molecule converge -s docker