For CI ansible-lint does not need to output color. This should resolve the Gitea Actions output with no effect on Drone.
Some checks failed
continuous-integration/drone/push Build is failing
Ansible Code Pipeline / Ansible-Development-Pipeline (ansible-dev-centos9) (push) Failing after 18s
Ansible Code Pipeline / Ansible-Development-Pipeline (ansible-dev-debian11) (push) Failing after 14s
Ansible Code Pipeline / Ansible-Development-Pipeline (ansible-dev-debian12) (push) Failing after 13s
Ansible Code Pipeline / Ansible-Development-Pipeline (ansible-dev-fedora39) (push) Failing after 15s

This commit is contained in:
2023-12-16 03:37:53 -05:00
parent 24ecb46c30
commit 5b1b1732e2

View File

@ -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