diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2020-02-26 14:21:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 19:21:41 +0000 |
commit | 6aa1f1ecf7142a4117eedb8c570f30da1598616c (patch) | |
tree | 0e19acbb82fcb745f7393c79abd79ff5ef04a40c /.azure-pipelines | |
parent | 21da76d1f1b527d62b2e9ef79dd9aa514d996341 (diff) | |
download | cpython-git-6aa1f1ecf7142a4117eedb8c570f30da1598616c.tar.gz |
bpo-39699: Don't silence make on Azure and Github CIs (GH-18583)
Diffstat (limited to '.azure-pipelines')
-rw-r--r-- | .azure-pipelines/macos-steps.yml | 2 | ||||
-rw-r--r-- | .azure-pipelines/posix-steps.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.azure-pipelines/macos-steps.yml b/.azure-pipelines/macos-steps.yml index d2ca580a93..fa38a0df8c 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 3ed3abd02a..a63659fa20 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') }}: |