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 /.github | |
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)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 | ||||
-rw-r--r-- | .github/workflows/coverage.yml | 2 | ||||
-rw-r--r-- | .github/workflows/doc.yml | 2 |
3 files changed, 4 insertions, 4 deletions
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' |