From 5b1b1732e23bcc1997ca7b3f4f92b69b8864a1f7 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Sat, 16 Dec 2023 03:37:53 -0500 Subject: [PATCH] For CI ansible-lint does not need to output color. This should resolve the Gitea Actions output with no effect on Drone. --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index c9de9f8..b310303 100644 --- a/.drone.yml +++ b/.drone.yml @@ -23,7 +23,7 @@ steps: image: gitea.thezengarden.net/podman/ansible-dev/centos9:release commands: - . ./.drone.env - - ansible-lint --offline $ANSIBLE_LINT_EXCLUSION + - ansible-lint --offline --nocolor $ANSIBLE_LINT_EXCLUSION --- @@ -51,7 +51,7 @@ steps: image: gitea.thezengarden.net/podman/ansible-dev/fedora39:release commands: - . ./.drone.env - - ansible-lint --offline $ANSIBLE_LINT_EXCLUSION + - ansible-lint --offline --nocolor $ANSIBLE_LINT_EXCLUSION --- @@ -79,7 +79,7 @@ steps: image: gitea.thezengarden.net/podman/ansible-dev/debian11:release commands: - . ./.drone.env - - ansible-lint --offline $ANSIBLE_LINT_EXCLUSION + - ansible-lint --offline --nocolor $ANSIBLE_LINT_EXCLUSION --- @@ -108,4 +108,4 @@ steps: image: gitea.thezengarden.net/podman/ansible-dev/debian12:release commands: - . ./.drone.env - - ansible-lint --offline $ANSIBLE_LINT_EXCLUSION + - ansible-lint --offline --nocolor $ANSIBLE_LINT_EXCLUSION