From 6bbff22a45cc308039c9fd2429c93aa3a893a48b Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Fri, 29 Aug 2025 10:02:15 +0200 Subject: [PATCH] Update yml paths --- .github/workflows/build_osx.yml | 2 +- nix/build-all.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_osx.yml b/.github/workflows/build_osx.yml index 700816bf26..22a7d18c36 100644 --- a/.github/workflows/build_osx.yml +++ b/.github/workflows/build_osx.yml @@ -85,7 +85,7 @@ jobs: - name: Package .zip archives run: | VERSION=v`cat VERSION` - cd ./build/`uname`/*/10.9/install/ifcopenshell + cd ./build/`uname`/*/10.15/install/ifcopenshell mkdir ~/output ls -d python-* | while read py_version; do diff --git a/nix/build-all.py b/nix/build-all.py index 0d71200770..06abc6fef0 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -190,7 +190,7 @@ USE_OCCT = os.environ.get("USE_OCCT", "true").lower() == "true" TOOLSET = None if platform.system() == "Darwin": # C++11 features used in OCCT 7+ need a more recent stdlib - TOOLSET = "10.9" if USE_OCCT else "10.6" + # TOOLSET = "10.9" if USE_OCCT else "10.6" # /Users/runner/work/IfcOpenShell/IfcOpenShell/build/Darwin/arm64/10.9/build/rocksdb/cache/clock_cache.cc:732:14: error: aligned allocation function of type 'void *(std::size_t, std::align_val_t)' is only available on macOS 10.13 or newer # /Users/runner/work/IfcOpenShell/IfcOpenShell/src/ifcparse/IfcFile.cpp:539:14: error: 'exists' is unavailable: introduced in macOS 10.15 TOOLSET = "10.15"