Skip to content

Commit 343bc06

Browse files
zoobaammaraskar
andauthored
bpo-39699: Don't silence make on Azure and Github CIs (GH-18583)
Co-authored-by: Ammar Askar <[email protected]>
1 parent c3536b7 commit 343bc06

File tree

6 files changed

+16
-14
lines changed

6 files changed

+16
-14
lines changed

.azure-pipelines/macos-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ steps:
66
- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-azdev
77
displayName: 'Configure CPython (debug)'
88

9-
- script: make -s -j4
9+
- script: make -j4
1010
displayName: 'Build CPython'
1111

1212
- script: make pythoninfo

.azure-pipelines/posix-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ steps:
2020
- script: ./configure --with-pydebug
2121
displayName: 'Configure CPython (debug)'
2222

23-
- script: make -s -j4
23+
- script: make -j4
2424
displayName: 'Build CPython'
2525

2626
- ${{ if eq(parameters.coverage, 'true') }}:

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Configure CPython
5252
run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev
5353
- name: Build CPython
54-
run: make -s -j4
54+
run: make -j4
5555
- name: Display build info
5656
run: make pythoninfo
5757
- name: Tests
@@ -78,7 +78,7 @@ jobs:
7878
- name: Configure CPython
7979
run: ./configure --with-pydebug --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER
8080
- name: Build CPython
81-
run: make -s -j4
81+
run: make -j4
8282
- name: Display build info
8383
run: make pythoninfo
8484
- name: Tests

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Configure CPython
4141
run: ./configure --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER
4242
- name: Build CPython
43-
run: make -s -j4
43+
run: make -j4
4444
- name: Display build info
4545
run: make pythoninfo
4646
- name: 'Coverage Preparation'

.github/workflows/doc.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v1
26-
- uses: actions/setup-python@v1
27-
with:
28-
python-version: '3.7'
29-
architecture: 'x64'
26+
- name: 'Install Dependencies'
27+
run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican
28+
- name: 'Configure CPython'
29+
run: ./configure --with-pydebug
30+
- name: 'Build CPython'
31+
run: make -j4
3032
- name: 'Install build dependencies'
31-
run: python -m pip install sphinx==2.2.0 blurb python-docs-theme
33+
run: make -C Doc/ PYTHON=../python venv
3234
- name: 'Build documentation'
33-
run: |
34-
cd Doc
35-
make check suspicious html PYTHON=python
36-
- name: Upload
35+
run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W -j4" doctest suspicious html
36+
- name: 'Upload'
3737
uses: actions/upload-artifact@v1
3838
with:
3939
name: doc-html

Doc/whatsnew/3.0.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
What's New In Python 3.0
33
****************************
44

5+
TEST CHANGE TO BE UNDONE
6+
57
.. XXX Add trademark info for Apple, Microsoft.
68
79
:Author: Guido van Rossum

0 commit comments

Comments
 (0)