fmt/support/mkdocs

46 lines
1.5 KiB
Plaintext
Raw Normal View History

2024-06-02 16:29:07 +00:00
#!/usr/bin/env python3
# A script to invoke mkdocs with the correct environment.
2024-06-09 23:34:50 +00:00
# Additionally supports deploying via mike:
# ./mkdocs deploy [mike-deploy-options]
2024-06-02 16:29:07 +00:00
2024-06-09 22:53:16 +00:00
import errno, os, shutil, sys
2024-06-09 20:17:13 +00:00
from subprocess import call
2024-06-02 16:29:07 +00:00
2024-06-09 22:53:16 +00:00
support_dir = os.path.dirname(os.path.normpath(__file__))
build_dir = os.path.join(os.path.dirname(support_dir), 'build')
2024-06-02 16:47:52 +00:00
2024-06-02 16:29:07 +00:00
# Set PYTHONPATH for the mkdocstrings handler.
env = os.environ.copy()
path = env.get('PYTHONPATH')
2024-06-09 20:17:13 +00:00
env['PYTHONPATH'] = \
2024-06-09 22:53:16 +00:00
(path + ':' if path else '') + os.path.join(support_dir, 'python')
2024-06-02 16:29:07 +00:00
2024-06-09 22:53:16 +00:00
config_path = os.path.join(support_dir, 'mkdocs.yml')
2024-06-09 18:37:18 +00:00
args = sys.argv[1:]
2024-06-09 20:17:13 +00:00
if len(args) > 0:
command = args[0]
if command == 'deploy':
2024-06-09 23:51:19 +00:00
site_repo = 'git@github.com:fmtlib/fmt.dev.git'
if 'CI' in os.environ:
site_repo = 'https://github.com/fmtlib/fmt.dev.git'
2024-06-09 22:53:16 +00:00
site_dir = os. path.join(build_dir, 'fmt.dev')
try:
shutil.rmtree(site_dir)
except OSError as e:
if e.errno == errno.ENOENT:
pass
2024-06-09 23:51:19 +00:00
ret = call(['git', 'clone', '--depth=1', site_repo, site_dir])
2024-06-09 20:17:13 +00:00
if ret != 0:
sys.exit(ret)
2024-06-09 23:20:54 +00:00
# Copy the config to the build dir because the site is built relative to it.
config_build_path = os.path.join(build_dir, 'mkdocs.yml')
shutil.copyfile(config_path, config_build_path)
sys.exit(call(['mike'] + args + ['--config-file', config_build_path,
'--branch', 'master'], cwd=site_dir, env=env))
2024-06-09 20:17:13 +00:00
elif not command.startswith('-'):
2024-06-09 18:37:18 +00:00
args += ['-f', config_path]
2024-06-09 20:17:13 +00:00
sys.exit(call(['mkdocs'] + args, env=env))