Skip to content
Snippets Groups Projects

Resolve "New ansible-lint not compatible with ansible 2.9"

Compare and
61 files
+ 278
413
Compare changes
  • Side-by-side
  • Inline
Files
61
@@ -6,15 +6,9 @@ include:
template-container-build:
script: |
docker build \
--tag ${CONTAINER_NAME}:${CONTAINER_TAG} \
--tag ${CONTAINER_NAME} \
--build-arg "ANSIBLE_VERSION=${ANSIBLE_VERSION}" \
--build-arg "ANSIBLE_DEPENDENCIES=${ANSIBLE_DEPENDENCIES}" \
--build-arg "ANSIBLE_LINT_VERSION=${ANSIBLE_LINT_VERSION}" \
.
docker push ${CONTAINER_NAME}:${CONTAINER_TAG}
if [ "${ANSIBLE_DEPENDENCIES}" = "latest" ]; then
docker image tag ${CONTAINER_NAME}:${CONTAINER_TAG} ${CONTAINER_DEFAULT_NAME}
docker push ${CONTAINER_DEFAULT_NAME}
fi
docker push ${CONTAINER_NAME}
rules: !reference [".base_rules", "rules"]
parallel: !reference [".version_to_build", "parallel"]
Loading