@@ -47,47 +47,47 @@ jobs:
4747 echo "::error:: News file missing (See CONTRIBUTING.md guide for details)."
4848
4949
50- generate-docs :
51- name : Build Documentation
52- runs-on : ubuntu-latest
53- steps :
54- - uses : actions/checkout@v4
55- - uses : actions/setup-python@v5
56- with :
57- python-version : ${{ env.python_version}}
58- - name : Determine dependencies
59- # Note
60- # The below code generates a pip requirements file from the pipenv development requirements (also obtaining the
61- # normal dependencies from setup.py).
62- # This code also forces the system to install latest tools as the ones present on the CI system may be too old
63- # for the process to go through properly.
64- # FIXME upgrade pipenv when https://github.com/pypa/pipenv/issues/4430 is actually fixed
65- run : |
66- python -m pip install --upgrade pip wheel setuptools
67- python -m pip install pipenv==${{ env.pipenv_version }}
68- echo "Locking dependencies"
69- python -m pipenv lock
70- python -m pipenv requirements > dev-requirements.txt
71- - uses : FranzDiebold/github-env-vars-action@v2
72- - name : Load Python Dependencies from cache
73- uses : actions/cache@v4
74- with :
75- path : ${{ env.python_cache_ubuntu_path }}
76- key : linux-pip-3-continuous-delivery-scripts
77- - name : Install dependencies
78- # Note
79- # As a virtual machine is already being used, pipenv
80- # is superfluous and eliminating pipenv in CI reduces overhead and reduce complexity, while retaining a single
81- # location for development dependencies.
82- run : |
83- python -m pip install -r dev-requirements.txt
84- python -m pip list
85- - name : Generate Documentation
86- run : |
87- cd-generate-docs --output_dir $(cd-get-config --key DOCUMENTATION_PRODUCTION_OUTPUT_PATH)
88- - name : Add copyright/licence notice.
89- run : |
90- cd-license-files
50+ # generate-docs:
51+ # name: Build Documentation
52+ # runs-on: ubuntu-latest
53+ # steps:
54+ # - uses: actions/checkout@v4
55+ # - uses: actions/setup-python@v5
56+ # with:
57+ # python-version: ${{ env.python_version}}
58+ # - name: Determine dependencies
59+ # # Note
60+ # # The below code generates a pip requirements file from the pipenv development requirements (also obtaining the
61+ # # normal dependencies from setup.py).
62+ # # This code also forces the system to install latest tools as the ones present on the CI system may be too old
63+ # # for the process to go through properly.
64+ # # FIXME upgrade pipenv when https://github.com/pypa/pipenv/issues/4430 is actually fixed
65+ # run: |
66+ # python -m pip install --upgrade pip wheel setuptools
67+ # python -m pip install pipenv==${{ env.pipenv_version }}
68+ # echo "Locking dependencies"
69+ # python -m pipenv lock
70+ # python -m pipenv requirements > dev-requirements.txt
71+ # - uses: FranzDiebold/github-env-vars-action@v2
72+ # - name: Load Python Dependencies from cache
73+ # uses: actions/cache@v4
74+ # with:
75+ # path: ${{ env.python_cache_ubuntu_path }}
76+ # key: linux-pip-3-continuous-delivery-scripts
77+ # - name: Install dependencies
78+ # # Note
79+ # # As a virtual machine is already being used, pipenv
80+ # # is superfluous and eliminating pipenv in CI reduces overhead and reduce complexity, while retaining a single
81+ # # location for development dependencies.
82+ # run: |
83+ # python -m pip install -r dev-requirements.txt
84+ # python -m pip list
85+ # - name: Generate Documentation
86+ # run: |
87+ # cd-generate-docs --output_dir $(cd-get-config --key DOCUMENTATION_PRODUCTION_OUTPUT_PATH)
88+ # - name: Add copyright/licence notice.
89+ # run: |
90+ # cd-license-files
9191
9292 tpip :
9393 name : Report licences in use (SPDX)
0 commit comments