Skip to content

Commit

Permalink
bpo-39699: Don't silence make on Azure and Github CIs (GH-18583)
Browse files Browse the repository at this point in the history
  • Loading branch information
ammaraskar committed Feb 26, 2020
1 parent 21da76d commit 6aa1f1e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .azure-pipelines/macos-steps.yml
Expand Up @@ -6,7 +6,7 @@ steps:
- 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
Expand Down
2 changes: 1 addition & 1 deletion .azure-pipelines/posix-steps.yml
Expand Up @@ -20,7 +20,7 @@ steps:
- script: ./configure --with-pydebug
displayName: 'Configure CPython (debug)'

- script: make -s -j4
- script: make -j4
displayName: 'Build CPython'

- ${{ if eq(parameters.coverage, 'true') }}:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -55,7 +55,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
Expand All @@ -82,7 +82,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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Expand Up @@ -28,7 +28,7 @@ jobs:
- 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'
Expand Down

0 comments on commit 6aa1f1e

Please sign in to comment.