summaryrefslogtreecommitdiff
path: root/.github
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 /.github
parent21da76d1f1b527d62b2e9ef79dd9aa514d996341 (diff)
downloadcpython-git-6aa1f1ecf7142a4117eedb8c570f30da1598616c.tar.gz
bpo-39699: Don't silence make on Azure and Github CIs (GH-18583)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml4
-rw-r--r--.github/workflows/coverage.yml2
-rw-r--r--.github/workflows/doc.yml2
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 7f13cfbc1f..6774ae46f7 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
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index e8b47b390e..8e1b764ca8 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -40,7 +40,7 @@ jobs:
- name: Configure CPython
run: ./configure --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: 'Coverage Preparation'
diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml
index 5bba8e6906..c8d395cea5 100644
--- a/.github/workflows/doc.yml
+++ b/.github/workflows/doc.yml
@@ -28,7 +28,7 @@ jobs:
- name: 'Configure CPython'
run: ./configure --with-pydebug
- name: 'Build CPython'
- run: make -s -j4
+ run: make -j4
- name: 'Install build dependencies'
run: make -C Doc/ PYTHON=../python venv
- name: 'Build documentation'