bpo-39699: Don't silence make on Azure and Github CIs (GH-18583)
This commit is contained in:
parent
21da76d1f1
commit
6aa1f1ecf7
|
@ -6,7 +6,7 @@ steps:
|
||||||
- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-azdev
|
- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-azdev
|
||||||
displayName: 'Configure CPython (debug)'
|
displayName: 'Configure CPython (debug)'
|
||||||
|
|
||||||
- script: make -s -j4
|
- script: make -j4
|
||||||
displayName: 'Build CPython'
|
displayName: 'Build CPython'
|
||||||
|
|
||||||
- script: make pythoninfo
|
- script: make pythoninfo
|
||||||
|
|
|
@ -20,7 +20,7 @@ steps:
|
||||||
- script: ./configure --with-pydebug
|
- script: ./configure --with-pydebug
|
||||||
displayName: 'Configure CPython (debug)'
|
displayName: 'Configure CPython (debug)'
|
||||||
|
|
||||||
- script: make -s -j4
|
- script: make -j4
|
||||||
displayName: 'Build CPython'
|
displayName: 'Build CPython'
|
||||||
|
|
||||||
- ${{ if eq(parameters.coverage, 'true') }}:
|
- ${{ if eq(parameters.coverage, 'true') }}:
|
||||||
|
|
|
@ -55,7 +55,7 @@ jobs:
|
||||||
- name: Configure CPython
|
- name: Configure CPython
|
||||||
run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev
|
run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev
|
||||||
- name: Build CPython
|
- name: Build CPython
|
||||||
run: make -s -j4
|
run: make -j4
|
||||||
- name: Display build info
|
- name: Display build info
|
||||||
run: make pythoninfo
|
run: make pythoninfo
|
||||||
- name: Tests
|
- name: Tests
|
||||||
|
@ -82,7 +82,7 @@ jobs:
|
||||||
- name: Configure CPython
|
- name: Configure CPython
|
||||||
run: ./configure --with-pydebug --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER
|
run: ./configure --with-pydebug --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER
|
||||||
- name: Build CPython
|
- name: Build CPython
|
||||||
run: make -s -j4
|
run: make -j4
|
||||||
- name: Display build info
|
- name: Display build info
|
||||||
run: make pythoninfo
|
run: make pythoninfo
|
||||||
- name: Tests
|
- name: Tests
|
||||||
|
|
|
@ -40,7 +40,7 @@ jobs:
|
||||||
- name: Configure CPython
|
- name: Configure CPython
|
||||||
run: ./configure --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER
|
run: ./configure --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER
|
||||||
- name: Build CPython
|
- name: Build CPython
|
||||||
run: make -s -j4
|
run: make -j4
|
||||||
- name: Display build info
|
- name: Display build info
|
||||||
run: make pythoninfo
|
run: make pythoninfo
|
||||||
- name: 'Coverage Preparation'
|
- name: 'Coverage Preparation'
|
||||||
|
|
|
@ -28,7 +28,7 @@ jobs:
|
||||||
- name: 'Configure CPython'
|
- name: 'Configure CPython'
|
||||||
run: ./configure --with-pydebug
|
run: ./configure --with-pydebug
|
||||||
- name: 'Build CPython'
|
- name: 'Build CPython'
|
||||||
run: make -s -j4
|
run: make -j4
|
||||||
- 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'
|
||||||
|
|
Loading…
Reference in New Issue