summaryrefslogtreecommitdiff
path: root/.azure-pipelines
diff options
context:
space:
mode:
authorAmmar Askar <ammar@ammaraskar.com>2020-02-26 14:21:41 -0500
committerGitHub <noreply@github.com>2020-02-26 19:21:41 +0000
commit6aa1f1ecf7142a4117eedb8c570f30da1598616c (patch)
tree0e19acbb82fcb745f7393c79abd79ff5ef04a40c /.azure-pipelines
parent21da76d1f1b527d62b2e9ef79dd9aa514d996341 (diff)
downloadcpython-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.yml2
-rw-r--r--.azure-pipelines/posix-steps.yml2
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') }}: