Skip to content

Commit 320b62b

Browse files
testing build
1 parent 8273a8f commit 320b62b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-zauth.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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")

0 commit comments

Comments
 (0)