summaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorAmmar Askar <ammar@ammaraskar.com>2020-02-26 19:21:41 (GMT)
committerGitHub <noreply@github.com>2020-02-26 19:21:41 (GMT)
commit6aa1f1ecf7142a4117eedb8c570f30da1598616c (patch)
tree0e19acbb82fcb745f7393c79abd79ff5ef04a40c /.github/workflows/build.yml
parent21da76d1f1b527d62b2e9ef79dd9aa514d996341 (diff)
downloadcpython-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/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml4
1 files changed, 2 insertions, 2 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