]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-39699: Don't silence make on Azure and Github CIs (GH-18583)
authorAmmar Askar <ammar@ammaraskar.com>
Wed, 26 Feb 2020 19:21:41 +0000 (14:21 -0500)
committerGitHub <noreply@github.com>
Wed, 26 Feb 2020 19:21:41 +0000 (19:21 +0000)
.azure-pipelines/macos-steps.yml
.azure-pipelines/posix-steps.yml
.github/workflows/build.yml
.github/workflows/coverage.yml
.github/workflows/doc.yml

index d2ca580a93d7ddd9c9f3795fbf6db2a97c70dcd2..fa38a0df8c87b821be8f4c3e3adb8922bdbea542 100644 (file)
@@ -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
index 3ed3abd02a7146add4489b7fd325999d5f753f8a..a63659fa204910fbdbd24830808075bbe1b90e35 100644 (file)
@@ -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') }}:
index 7f13cfbc1ff4ed75182ddea724b8310a03ca0030..6774ae46f7e0f2662dfc02b0b3f83cb5ce05dae2 100644 (file)
@@ -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
@@ -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
index e8b47b390e5a7918327cb04bf4590b793b6a31cb..8e1b764ca8df48e66ba09b9e5c683e3d8b6a9e7c 100644 (file)
@@ -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'
index 5bba8e690655fa0fbf111112324c6338a443e5b3..c8d395cea5156c23964016ad5a81807b1be50038 100644 (file)
@@ -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'