Skip to content

Commit 93c2a19

Browse files
authored
REVERT ME: android.yml: more debugging
1 parent 2c5f90a commit 93c2a19

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/android.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,13 @@ jobs:
137137
set +e
138138
set -xv
139139
env | grep ANDROID
140-
which adb
141-
ls "$ANDROID_HOME/build-tools"
140+
echo "Searching for d8 files in $ANDROID_HOME/build-tools"
141+
for BUILD_TOOLS_DIR in "$ANDROID_HOME/build-tools/*" ; do
142+
echo "Looking for d8 in $BUILD_TOOLS_DIR"
143+
for D8_FILE in `find "$BUILD_TOOLS_DIR" -name d8'*'`; do
144+
echo "$D8_FILE"
145+
done
146+
done
142147
143148
- name: Download C++ SDK
144149
shell: bash

0 commit comments

Comments
 (0)