Staging
v0.5.1
https://github.com/python/cpython
Revision e483d281bd55be0beee3e62d18e0719175bde671 authored by pxinwr on 01 December 2020, 20:34:42 UTC, committed by GitHub on 01 December 2020, 20:34:42 UTC
Fix test_netrc on VxWorks: create temporary directories using temp_cwd().
1 parent 1867b46
Raw File
Tip revision: e483d281bd55be0beee3e62d18e0719175bde671 authored by pxinwr on 01 December 2020, 20:34:42 UTC
bpo-31904: Fix test_netrc for VxWorks RTOS (GH-21675)
Tip revision: e483d28
doc.yml
name: Docs

on:
  #push:
  #  branches:
  #  - master
  #  - 3.9
  #  - 3.8
  #  - 3.7
  #  paths:
  #  - 'Doc/**'
  pull_request:
    branches:
    - master
    - 3.9
    - 3.8
    - 3.7
    paths:
    - 'Doc/**'
    - 'Misc/**'

jobs:
  build_doc:
    name: 'Docs'
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Register Sphinx problem matcher
      run: echo "::add-matcher::.github/problem-matchers/sphinx.json"
    - 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: make -C Doc/ PYTHON=../python venv
    - name: 'Build documentation'
      run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" doctest html
    - name: 'Upload'
      uses: actions/upload-artifact@v2.2.1
      with:
        name: doc-html
        path: Doc/build/html
back to top