Skip to content

Commit 4caf09f

Browse files
committed
chore(workflows): pass {MACOSX,IPHONEOS}_DEPLOYMENT_TARGET to cibuildwheel
1 parent 18806a9 commit 4caf09f

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,13 @@ concurrency:
4242
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
4343

4444
env:
45+
OPTREE_CXX_WERROR: "OFF"
46+
_GLIBCXX_USE_CXX11_ABI: "1"
47+
MACOSX_DEPLOYMENT_TARGET: "15.0"
48+
IPHONEOS_DEPLOYMENT_TARGET: "16.3"
49+
PYTHONUNBUFFERED: "1"
4550
PYTHON_TAG: "py3" # to be updated
4651
PYTHON_VERSION: "3" # to be updated
47-
_GLIBCXX_USE_CXX11_ABI: "1"
4852
COLUMNS: "100"
4953
FORCE_COLOR: "1"
5054
CLICOLOR_FORCE: "1"

.github/workflows/tests-with-pydebug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ env:
3636
CMAKE_BUILD_TYPE: "Debug"
3737
OPTREE_CXX_WERROR: "ON"
3838
_GLIBCXX_USE_CXX11_ABI: "1"
39+
MACOSX_DEPLOYMENT_TARGET: "15.0"
3940
PYTHONUNBUFFERED: "1"
4041
PYTHON: "python" # to be updated
4142
PYTHON_TAG: "py3" # to be updated

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ env:
3737
CMAKE_BUILD_TYPE: "Debug"
3838
OPTREE_CXX_WERROR: "ON"
3939
_GLIBCXX_USE_CXX11_ABI: "1"
40+
MACOSX_DEPLOYMENT_TARGET: "15.0"
4041
FULL_TEST_PYTHON_VERSIONS: "3.12;3.13"
4142
PYTHONUNBUFFERED: "1"
4243
PYTHON: "python" # to be updated

0 commit comments

Comments
 (0)