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 /.azure-pipelines/posix-steps.yml | |
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 '.azure-pipelines/posix-steps.yml')
-rw-r--r-- | .azure-pipelines/posix-steps.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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') }}: |