Skip to content

Commit

Permalink
Fix conda path on mac arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
akenmorris committed Apr 29, 2024
1 parent b1ea4e2 commit 8566e53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/common.sh
Expand Up @@ -14,10 +14,11 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
# check arch
if [[ "$(uname -m)" == "arm64" ]]; then
PLATFORM="mac-arm64"
CONDA_PATH="/Users/runner/miniconda3/envs/shapeworks"
else
PLATFORM="mac-intel"
CONDA_PATH="/usr/local/miniconda/envs/shapeworks"
fi
CONDA_PATH="/usr/local/miniconda/envs/shapeworks"
DEP_PATH="$HOME/install"
CCACHE_DIR="/Users/runner/Library/Caches/ccache"
USE_CCACHE="ON"
Expand Down

0 comments on commit 8566e53

Please sign in to comment.