diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2020-02-26 19:21:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 19:21:41 (GMT) |
commit | 6aa1f1ecf7142a4117eedb8c570f30da1598616c (patch) | |
tree | 0e19acbb82fcb745f7393c79abd79ff5ef04a40c | |
parent | 21da76d1f1b527d62b2e9ef79dd9aa514d996341 (diff) | |
download | cpython-6aa1f1ecf7142a4117eedb8c570f30da1598616c.zip cpython-6aa1f1ecf7142a4117eedb8c570f30da1598616c.tar.gz cpython-6aa1f1ecf7142a4117eedb8c570f30da1598616c.tar.bz2 |
bpo-39699: Don't silence make on Azure and Github CIs (GH-18583)
-rw-r--r-- | .azure-pipelines/macos-steps.yml | 2 | ||||
-rw-r--r-- | .azure-pipelines/posix-steps.yml | 2 | ||||
-rw-r--r-- | .github/workflows/build.yml | 4 | ||||
-rw-r--r-- | .github/workflows/coverage.yml | 2 | ||||
-rw-r--r-- | .github/workflows/doc.yml | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/.azure-pipelines/macos-steps.yml b/.azure-pipelines/macos-steps.yml index d2ca580..fa38a0d 100644 --- a/.azure-pipelines/macos-steps.yml +++ b/.azure-pipelines/macos-steps.yml @@ -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 diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml index 3ed3abd0..a63659f 100644 --- a/.azure-pipelines/posix-steps.yml +++ b/.azure-pipelines/posix-steps.yml @@ -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') }}: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7f13cfb..6774ae4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e8b47b3..8e1b764 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -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' diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 5bba8e6..c8d395c 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -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' |