2021-05-27 22:59:42 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# Copyright (c) Ansible Project
|
2022-08-05 12:28:29 +02:00
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2022-04-10 10:47:00 +02:00
|
|
|
"""Check extra collection docs with antsibull-docs."""
|
2021-05-27 22:59:42 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
"""Main entry point."""
|
2023-04-16 18:20:52 +02:00
|
|
|
env = os.environ.copy()
|
|
|
|
suffix = ':{env}'.format(env=env["ANSIBLE_COLLECTIONS_PATH"]) if 'ANSIBLE_COLLECTIONS_PATH' in env else ''
|
|
|
|
env['ANSIBLE_COLLECTIONS_PATH'] = '{root}{suffix}'.format(root=os.path.dirname(os.path.dirname(os.path.dirname(os.getcwd()))), suffix=suffix)
|
|
|
|
p = subprocess.run(
|
2023-05-20 13:05:44 +02:00
|
|
|
['antsibull-docs', 'lint-collection-docs', '--plugin-docs', '--skip-rstcheck', '.'],
|
2023-04-16 18:20:52 +02:00
|
|
|
env=env,
|
|
|
|
check=False,
|
|
|
|
)
|
2021-05-27 22:59:42 +02:00
|
|
|
if p.returncode not in (0, 3):
|
|
|
|
print('{0}:0:0: unexpected return code {1}'.format(sys.argv[0], p.returncode))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|