Skip to content
Snippets Groups Projects
Verified Commit 96027ca5 authored by Chris Croome's avatar Chris Croome
Browse files

Update linting

parent 0775a0cf
No related branches found
Tags 3.4.0
No related merge requests found
Pipeline #27824 passed
# Copyright 2018-2023 Chris Croome
#
# This file is part of the Webarchitects MariaDB Ansible role.
#
# The Webarchitects MariaDB Ansible role is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
#
# The Webarchitects MariaDB Ansible role is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with the Webarchitects MariaDB Ansible role. If not, see <https://www.gnu.org/licenses/>.
---
image: registry.git.coop/webarch/containers/images/ansible:0.23.0
image: registry.git.coop/webarch/containers/images/ansible:0.24.0
variables:
PY_COLORS: "1"
ANSIBLE_DEFAULT_VERBOSITY: "2"
ANSIBLE_DIFF_ALWAYS: "1"
ANSIBLE_FORCE_COLOR: "1"
PY_COLORS: "1"
before_script:
- chmod 700 $(pwd)
stages:
......@@ -10,6 +21,5 @@ stages:
lint:
stage: lint
script:
- molecule lint
# vim: syntax=yaml
- molecule converge
...
# Copyright 2018-2023 Chris Croome
#
# This file is part of the Webarchitects MariaDB Ansible role.
#
# The Webarchitects MariaDB Ansible role is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
#
# The Webarchitects MariaDB Ansible role is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with the Webarchitects MariaDB Ansible role. If not, see <https://www.gnu.org/licenses/>.
---
# https://yamllint.readthedocs.io/en/stable/integration.html
# https://github.com/adrienverge/yamllint/tags
repos:
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.31.0
rev: v1.32.0
hooks:
- id: yamllint
...
# Copyright 2018-2023 Chris Croome
#
# This file is part of the Webarchitects MariaDB Ansible role.
#
# The Webarchitects MariaDB Ansible role is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
#
# The Webarchitects MariaDB Ansible role is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with the Webarchitects MariaDB Ansible role. If not, see <https://www.gnu.org/licenses/>.
---
- name: Lint
become: false
connection: local
gather_facts: false
hosts:
- localhost
tasks:
- name: Check Jinja2 syntax
ansible.builtin.command: find -type f -name '*.j2' -exec ansiblej2lint.py {} +
check_mode: false
args:
chdir: ../..
changed_when: false
- name: YAML lint
ansible.builtin.command: yamllint -f colored -c .yamllint .
check_mode: false
args:
chdir: ../..
changed_when: false
- name: Ansible lint
ansible.builtin.command: ansible-lint -c .ansible-lint --force-color .
check_mode: false
args:
chdir: ../..
changed_when: false
...
# Copyright 2018-2023 Chris Croome
#
# This file is part of the Webarchitects MariaDB Ansible role.
#
# The Webarchitects MariaDB Ansible role is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
#
# The Webarchitects MariaDB Ansible role is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with the Webarchitects MariaDB Ansible role. If not, see <https://www.gnu.org/licenses/>.
---
dependency:
name: galaxy
platforms:
- name: instance
image: registry.git.coop/webarch/containers/images/ansible:0.23.0
pre_build_image: true
provisioner:
name: ansible
lint: |
set -e
find -type f -name '*.j2' -exec ansiblej2lint.py {} +
yamllint -f colored -c .yamllint .
ansible-lint -c .ansible-lint --force-color .
# vim: syntax=yaml
verifier:
name: ansible
...
......@@ -8,6 +8,13 @@
#
# You should have received a copy of the GNU General Public License along with the Webarchitects MariaDB Ansible role. If not, see <https://www.gnu.org/licenses/>.
---
- name: Skip the tasks in this role
ansible.builtin.debug:
msg: "The MariaDB role tasks are not being run since the mariadb variable is false."
when: not mariadb | bool
tags:
- mariadb
- name: MariaDB
block:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment