File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,12 @@ jobs:
2525 - name : Locate osxcross toolchain
2626 id : locate
2727 run : |
28- TOOLCHAIN_PATH=$(find /opt /usr/local $HOME $GITHUB_WORKSPACE -type f -name 'aarch64-apple-darwin*-clang' 2>/dev/null | head -n 1 || true)
28+ TOOLCHAIN_PATH=$(find /home/runner/work/_actions/Timmmm/setup-osxcross/v2/osxcross/target/bin \
29+ -type f -name 'aarch64-apple-darwin*-clang' 2>/dev/null | head -n 1 || true)
2930 if [ -z "$TOOLCHAIN_PATH" ]; then
3031 echo "aarch64-apple-darwin clang not found"
31- find /opt /usr/local -maxdepth 3 -type d -name "osxcross" 2>/dev/null || true
32+ echo "Available files under osxcross target/bin:"
33+ ls -l /home/runner/work/_actions/Timmmm/setup-osxcross/v2/osxcross/target/bin || true
3234 exit 1
3335 fi
3436 TOOLCHAIN_DIR=$(dirname "$TOOLCHAIN_PATH")
You can’t perform that action at this time.
0 commit comments