You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
909 B
Django/Jinja
31 lines
909 B
Django/Jinja
{{ template_disclaimer }}
|
|
|
|
# Each test will be run on each of the docker images defined in this space
|
|
# separated list.
|
|
#
|
|
# imagers. They currently can't be targeted by ansible because they don't have
|
|
# python.
|
|
MOLECULE_DOCKER_IMAGES ?= $(UBI7_DOCKER_IMAGE) \
|
|
$(UBI8_DOCKER_IMAGE)
|
|
|
|
CONCURRENT_MOLECULE_PLATFORMS ?= 1
|
|
|
|
# REPO_ENV_VARS ?= \
|
|
# ANSIBLE_BECOME_PASSWORD_FILE=molecule/shared/locked-down-sudo-become.pw
|
|
REPO_ENV_VARS ?=
|
|
|
|
shared/.git:
|
|
git submodule update --init
|
|
|
|
-include common/makefiles/common.mk
|
|
|
|
# TODO add a comment about how these target will override the ones in the
|
|
# common makefile. -include repo specific targets.
|
|
# TODO add comments.
|
|
%: shared/.git
|
|
@$(MAKE) -f common/makefiles/common.mk $@
|
|
|
|
# These will never get hit because the common makefiles targets for these will
|
|
# get hit first. We add these here to allow auto-complete of these targets.
|
|
{{ generated_make_targets }}
|