From 41164c0a5fbf1a89239649bf9c9756f443d351ac Mon Sep 17 00:00:00 2001 From: Thomas-Otavio Peulen Date: Sat, 7 Dec 2024 14:54:44 +0100 Subject: [PATCH] Enforce amd64 on osx labellib has compile issues on osx arm64. --- .github/workflows/conda-build.yml | 2 +- .github/workflows/conda-release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conda-build.yml b/.github/workflows/conda-build.yml index 6b104218..b71cadb7 100644 --- a/.github/workflows/conda-build.yml +++ b/.github/workflows/conda-build.yml @@ -37,7 +37,7 @@ jobs: channels: conda-forge,bioconda,tpeulen,defaults channel-priority: true env: - CONDA_SUBDIR: ${{ matrix.os == 'macos-latest' && 'osx-64' }} + CONDA_SUBDIR: ${{ matrix.os == 'macos-latest' && 'osx-64' || null }} - name: Display Conda Settings shell: bash -el {0} diff --git a/.github/workflows/conda-release.yml b/.github/workflows/conda-release.yml index cd6b1cc3..0993e55c 100644 --- a/.github/workflows/conda-release.yml +++ b/.github/workflows/conda-release.yml @@ -35,7 +35,7 @@ jobs: channels: conda-forge,bioconda,tpeulen,defaults channel-priority: true env: - CONDA_SUBDIR: ${{ matrix.os == 'macos-latest' && 'osx-64' }} + CONDA_SUBDIR: ${{ matrix.os == 'macos-latest' && 'osx-64' || null }} - name: Display Conda Settings shell: bash -el {0}