diff options
author | Steve Dower <steve.dower@python.org> | 2020-02-26 19:57:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 19:57:14 (GMT) |
commit | 343bc06d8047e4a2e675394528dbb5155be1b3b5 (patch) | |
tree | c1e44f21d9c57d111c190bbfd8987ea11d8e3bdc /.azure-pipelines | |
parent | c3536b79425edc623860073eed4cf8945b2281dc (diff) | |
download | cpython-343bc06d8047e4a2e675394528dbb5155be1b3b5.zip cpython-343bc06d8047e4a2e675394528dbb5155be1b3b5.tar.gz cpython-343bc06d8047e4a2e675394528dbb5155be1b3b5.tar.bz2 |
bpo-39699: Don't silence make on Azure and Github CIs (GH-18583)
Co-authored-by: Ammar Askar <ammar_askar@hotmail.com>
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 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') }}: |