summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Vagelpohl <jens@plyp.com>2022-11-15 07:15:05 +0100
committerJens Vagelpohl <jens@plyp.com>2022-11-15 07:15:05 +0100
commite090fe260f8b11eef2fc7cac712839f4cda67977 (patch)
tree3b503212a5d4bc70934a4b77fecbd2744fb00248
parent66722ad99996e2dc3bcab8ee343847316eea86ea (diff)
downloadzope-proxy-e090fe260f8b11eef2fc7cac712839f4cda67977.tar.gz
- quick experiment to show Python build flags
-rw-r--r--.github/workflows/tests.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index c908bac..3625c32 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -141,6 +141,16 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
+ - name: Print Python build flags
+ if: >
+ startsWith(runner.os, 'Mac')
+ && (matrix.python-version == '3.8'
+ || matrix.python-version == '3.9'
+ || matrix.python-version == '3.10'
+ || matrix.python-version == '3.11')
+ run: |
+ python -c 'import sysconfig, pprint; pprint.pprint(sysconfig.get_config_vars())'
+
- name: Install Build Dependencies (PyPy2)
if: >
startsWith(matrix.python-version, 'pypy-2.7')