Skip to content

Commit

Permalink
Enforce amd64 on osx
Browse files Browse the repository at this point in the history
labellib has compile issues on
osx arm64.
  • Loading branch information
tpeulen committed Dec 7, 2024
1 parent d4101c1 commit 41164c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 41164c0

Please sign in to comment.