- 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'
- name: 'Configure CPython'
run: ./configure --with-pydebug
- name: 'Build CPython'
- run: make -s -j4
+ run: make -j4
- name: 'Install build dependencies'
run: make -C Doc/ PYTHON=../python venv
- name: 'Build documentation'