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 4eeff6d commit bb2f4e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,7 @@ jobs:
shell: bash -el {0}
run: |
# Check if RUNNER_OS is macOS and set CONDA_SUBDIR accordingly
if [[ "$RUNNER_OS" == "macOS" ]]; then
echo "Running on macOS, exporting CONDA_SUBDIR=osx-amd64"
export CONDA_SUBDIR=osx-amd64
fi
if [[ "$RUNNER_OS" == "macOS" ]]; then export CONDA_SUBDIR=osx-amd64; fi
# Create and activate the build environment
echo "Creating build environment..."
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/conda-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,7 @@ jobs:
shell: bash -el {0}
run: |
# Check if RUNNER_OS is macOS and set CONDA_SUBDIR accordingly
if [[ "$RUNNER_OS" == "macOS" ]]; then
echo "Running on macOS, exporting CONDA_SUBDIR=osx-amd64"
export CONDA_SUBDIR=osx-amd64
fi
if [[ "$RUNNER_OS" == "macOS" ]]; then export CONDA_SUBDIR=osx-amd64; fi
# Create and activate the build environment
echo "Creating build environment..."
Expand Down

0 comments on commit bb2f4e7

Please sign in to comment.