From 3b6dbef32cd4b7826c62a85b58757c96fdd321f7 Mon Sep 17 00:00:00 2001 From: John Kerl Date: Wed, 20 Nov 2024 16:15:00 +0000 Subject: [PATCH] MNT: Re-rendered with conda-build 24.5.0, conda-smithy 3.44.7, and conda-forge-pinning 2024.11.20.13.33.43 --- .ci_support/linux_64_.yaml | 2 -- .ci_support/osx_64_.yaml | 2 -- .ci_support/osx_arm64_.yaml | 2 -- build-locally.py | 7 +++++++ 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.ci_support/linux_64_.yaml b/.ci_support/linux_64_.yaml index ecc11771..1765ad3e 100644 --- a/.ci_support/linux_64_.yaml +++ b/.ci_support/linux_64_.yaml @@ -43,8 +43,6 @@ spdlog: - '1.14' target_platform: - linux-64 -tiledb: -- '2.26' zip_keys: - - c_compiler_version - cxx_compiler_version diff --git a/.ci_support/osx_64_.yaml b/.ci_support/osx_64_.yaml index 879c95dc..c85ba59d 100644 --- a/.ci_support/osx_64_.yaml +++ b/.ci_support/osx_64_.yaml @@ -45,8 +45,6 @@ spdlog: - '1.14' target_platform: - osx-64 -tiledb: -- '2.26' zip_keys: - - c_compiler_version - cxx_compiler_version diff --git a/.ci_support/osx_arm64_.yaml b/.ci_support/osx_arm64_.yaml index 44a7586c..e2880dae 100644 --- a/.ci_support/osx_arm64_.yaml +++ b/.ci_support/osx_arm64_.yaml @@ -45,8 +45,6 @@ spdlog: - '1.14' target_platform: - osx-arm64 -tiledb: -- '2.26' zip_keys: - - c_compiler_version - cxx_compiler_version diff --git a/build-locally.py b/build-locally.py index 6788aea6..c4a56c66 100755 --- a/build-locally.py +++ b/build-locally.py @@ -26,6 +26,13 @@ def setup_environment(ns): os.path.dirname(__file__), "miniforge3" ) + # The default cache location might not be writable using docker on macOS. + if ns.config.startswith("linux") and platform.system() == "Darwin": + os.environ["CONDA_FORGE_DOCKER_RUN_ARGS"] = ( + os.environ.get("CONDA_FORGE_DOCKER_RUN_ARGS", "") + + " -e RATTLER_CACHE_DIR=/tmp/rattler_cache" + ) + def run_docker_build(ns): script = ".scripts/run_docker_build.sh"