-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (21 loc) · 1011 Bytes
/
Makefile
File metadata and controls
28 lines (21 loc) · 1011 Bytes
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
init:
pipenv install --python 3
vagrant-login:
molecule login -s default
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