bpo-42238: Doc: Remove make suspicious from the CI and docs builds. (GH-23313)
It probably helped a lot a while back, but may not be as usefull today. We'll continue monitoring it before deletion, so true positives can be migrated to rstlint.
This commit is contained in:
parent
8d17d2bd0a
commit
c9c6e9f89a
|
@ -16,7 +16,7 @@ steps:
|
||||||
displayName: 'Install build dependencies'
|
displayName: 'Install build dependencies'
|
||||||
|
|
||||||
- ${{ if ne(parameters.latex, 'true') }}:
|
- ${{ if ne(parameters.latex, 'true') }}:
|
||||||
- script: make check suspicious html PYTHON=python
|
- script: make check html PYTHON=python
|
||||||
workingDirectory: '$(build.sourcesDirectory)/Doc'
|
workingDirectory: '$(build.sourcesDirectory)/Doc'
|
||||||
displayName: 'Build documentation'
|
displayName: 'Build documentation'
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ jobs:
|
||||||
- name: 'Install build dependencies'
|
- name: 'Install build dependencies'
|
||||||
run: make -C Doc/ PYTHON=../python venv
|
run: make -C Doc/ PYTHON=../python venv
|
||||||
- name: 'Build documentation'
|
- name: 'Build documentation'
|
||||||
run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" doctest suspicious html
|
run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" doctest html
|
||||||
- name: 'Upload'
|
- name: 'Upload'
|
||||||
uses: actions/upload-artifact@v2.2.0
|
uses: actions/upload-artifact@v2.2.0
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -53,7 +53,7 @@ matrix:
|
||||||
- cd Doc
|
- cd Doc
|
||||||
- make venv PYTHON=python
|
- make venv PYTHON=python
|
||||||
script:
|
script:
|
||||||
- make check suspicious html SPHINXOPTS="-q -W -j4"
|
- make check html SPHINXOPTS="-q -W -j4"
|
||||||
- name: "Documentation tests"
|
- name: "Documentation tests"
|
||||||
os: linux
|
os: linux
|
||||||
language: c
|
language: c
|
||||||
|
|
|
@ -216,7 +216,6 @@ serve:
|
||||||
# for development releases: always build
|
# for development releases: always build
|
||||||
autobuild-dev:
|
autobuild-dev:
|
||||||
make dist SPHINXOPTS='$(SPHINXOPTS) -Ea -A daily=1'
|
make dist SPHINXOPTS='$(SPHINXOPTS) -Ea -A daily=1'
|
||||||
-make suspicious
|
|
||||||
|
|
||||||
# for quick rebuilds (HTML only)
|
# for quick rebuilds (HTML only)
|
||||||
autobuild-dev-html:
|
autobuild-dev-html:
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
Tentative to deprecate ``make suspicious`` by first removing it from the CI
|
||||||
|
and documentation builds, but keeping it around for manual uses.
|
Loading…
Reference in New Issue