From 1bc6d6ed596acf26892257924987d2717d08909d Mon Sep 17 00:00:00 2001 From: Roland Kaminski Date: Fri, 13 Sep 2024 03:11:06 +0200 Subject: [PATCH] one more try --- .github/conda/conda_build_config.yaml | 6 +++--- .github/workflows/conda-dev.yml | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/conda/conda_build_config.yaml b/.github/conda/conda_build_config.yaml index 59dbb9f..e8958f1 100644 --- a/.github/conda/conda_build_config.yaml +++ b/.github/conda/conda_build_config.yaml @@ -11,6 +11,6 @@ clingo: pin_run_as_build: clingo: x.x -MACOSX_DEPLOYMENT_TARGET: 11.3 # [osx] -CONDA_BUILD_SYSROOT: # [osx] - - /opt/MacOSX11.3.sdk # [osx] +MACOSX_DEPLOYMENT_TARGET: 10.15 # [osx] +CONDA_BUILD_SYSROOT: # [osx] + - /opt/MacOSX10.15.sdk # [osx] diff --git a/.github/workflows/conda-dev.yml b/.github/workflows/conda-dev.yml index e255851..0e529d3 100644 --- a/.github/workflows/conda-dev.yml +++ b/.github/workflows/conda-dev.yml @@ -42,6 +42,8 @@ jobs: if: ${{ matrix.os == 'macos-latest' }} shell: pwsh run: | + Invoke-WebRequest -Uri 'https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX10.15.sdk.tar.xz' -OutFile 'MacOSX10.15.sdk.tar.xz' + sudo tar xf MacOSX10.15.sdk.tar.xz -C /opt Invoke-WebRequest -Uri 'https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.3.sdk.tar.xz' -OutFile 'MacOSX11.3.sdk.tar.xz' sudo tar xf MacOSX11.3.sdk.tar.xz -C /opt