summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2023-04-03 20:45:10 +0200
committerStefan Behnel <stefan_ml@behnel.de>2023-04-03 20:45:10 +0200
commitc1025fcf9a7ef52c1fa81eceb7a49f257d8f0db8 (patch)
tree5a943fed692eecacac14d0685ae1c7797a478ebc
parenteed3482456f7133e8a6632c71c6e97e7f5a42936 (diff)
downloadcython-c1025fcf9a7ef52c1fa81eceb7a49f257d8f0db8.tar.gz
Remove special macOS CI targets as they can just be part of the build matrix.
-rw-r--r--.github/workflows/ci.yml51
1 files changed, 4 insertions, 47 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a41f188dc..ce603e0fb 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -41,7 +41,7 @@ jobs:
#
# FIXME: 'cpp' tests seems to fail due to compilation errors (numpy_pythran_unit)
# in all python versions and test failures (builtin_float) in 3.5<
- os: [windows-2019, ubuntu-20.04]
+ os: [windows-2019, ubuntu-20.04, macos-11]
backend: [c, cpp]
python-version:
- "2.7"
@@ -190,57 +190,13 @@ jobs:
allowed_failure: true
- os: windows-2019
# TestInline
- python-version: 3.10
+ python-version: "3.10"
allowed_failure: true
- os: windows-2019
# TestInline
- python-version: 3.11
+ python-version: "3.11"
allowed_failure: true
- # MacOS sub-jobs
- # ==============
- # (C-only builds are used to create wheels)
- - os: macos-11
- python-version: 2.7
- backend: c
- env: { MACOSX_DEPLOYMENT_TARGET: 10.14 }
- - os: macos-11
- python-version: 2.7
- backend: cpp
- env: { MACOSX_DEPLOYMENT_TARGET: 10.14 }
- - os: macos-11
- python-version: 3.5
- backend: c
- env: { MACOSX_DEPLOYMENT_TARGET: 10.14 }
- - os: macos-11
- python-version: 3.6
- backend: c
- env: { MACOSX_DEPLOYMENT_TARGET: 10.14 }
- - os: macos-11
- python-version: 3.7
- backend: c
- env: { MACOSX_DEPLOYMENT_TARGET: 10.15 }
- - os: macos-11
- python-version: 3.8
- backend: c
- env: { MACOSX_DEPLOYMENT_TARGET: 10.15 }
- - os: macos-11
- python-version: 3.9
- backend: c
- env: { MACOSX_DEPLOYMENT_TARGET: 10.14 }
- - os: macos-11
- python-version: 3.9
- backend: cpp
- env: { MACOSX_DEPLOYMENT_TARGET: 10.14 }
- - os: macos-11
- python-version: "3.10"
- backend: c
- env: { MACOSX_DEPLOYMENT_TARGET: 10.14 }
- - os: macos-11
- python-version: "3.10"
- backend: cpp
- env: { MACOSX_DEPLOYMENT_TARGET: 10.14 }
-
exclude:
# fails due to lack of a compatible compiler
- os: windows-2019
@@ -261,6 +217,7 @@ jobs:
env:
BACKEND: ${{ matrix.backend }}
PYTHON_VERSION: ${{ matrix.python-version }}
+ MACOSX_DEPLOYMENT_TARGET: 10.15
GCC_VERSION: 8
USE_CCACHE: 1
CCACHE_SLOPPINESS: "pch_defines,time_macros"