diff options
author | Steve Dower <steve.dower@python.org> | 2020-02-26 22:08:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 22:08:10 +0000 |
commit | 3bf9de2fb954bd1131f4f41517d7d5c316fb95f8 (patch) | |
tree | ce41770fbdee5e43218c3cecdf5b5d3d51330468 /.github | |
parent | Doc: int -> int or Py_ssize_t (GH-18663) (diff) | |
download | cpython-3bf9de2fb954bd1131f4f41517d7d5c316fb95f8.tar.gz cpython-3bf9de2fb954bd1131f4f41517d7d5c316fb95f8.tar.bz2 cpython-3bf9de2fb954bd1131f4f41517d7d5c316fb95f8.zip |
bpo-39699: Don't silence make on Azure and Github CIs (GH-18583)
Doc tests remain disabled for 3.7
Co-authored-by: Ammar Askar <ammar_askar@hotmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 | ||||
-rw-r--r-- | .github/workflows/coverage.yml | 2 | ||||
-rw-r--r-- | .github/workflows/doc.yml | 18 |
3 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 16d6f0db8c9..2b4aec6e309 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,7 +51,7 @@ jobs: - name: Configure CPython run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev - name: Build CPython - run: make -s -j4 + run: make -j4 - name: Display build info run: make pythoninfo - name: Tests @@ -78,7 +78,7 @@ jobs: - name: Configure CPython run: ./configure --with-pydebug --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER - name: Build CPython - run: make -s -j4 + run: make -j4 - name: Display build info run: make pythoninfo - name: Tests diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e8b47b390e5..8e1b764ca8d 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -40,7 +40,7 @@ jobs: - name: Configure CPython run: ./configure --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER - name: Build CPython - run: make -s -j4 + run: make -j4 - name: Display build info run: make pythoninfo - name: 'Coverage Preparation' diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 405b12e3d29..e943d32c240 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -23,17 +23,17 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - uses: actions/setup-python@v1 - with: - python-version: '3.7' - architecture: 'x64' + - name: 'Install Dependencies' + run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican + - name: 'Configure CPython' + run: ./configure --with-pydebug + - name: 'Build CPython' + run: make -j4 - name: 'Install build dependencies' - run: python -m pip install sphinx==2.2.0 blurb python-docs-theme + run: make -C Doc/ PYTHON=../python venv - name: 'Build documentation' - run: | - cd Doc - make check suspicious html PYTHON=python - - name: Upload + run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W -j4" suspicious html + - name: 'Upload' uses: actions/upload-artifact@v1 with: name: doc-html |