- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-azdev
displayName: 'Configure CPython (debug)'
-- script: make -s -j4
+- script: make -j4
displayName: 'Build CPython'
- script: make pythoninfo
- script: ./configure --with-pydebug
displayName: 'Configure CPython (debug)'
-- script: make -s -j4
+- script: make -j4
displayName: 'Build CPython'
- ${{ if eq(parameters.coverage, 'true') }}:
- 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
- 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
- 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'
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