We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0fc274 commit 6433df2Copy full SHA for 6433df2
1 file changed
.github/workflows/scripts/android/android-emulator-tests.sh
@@ -132,6 +132,12 @@ nohup emulator -no-accel -no-metrics -partition-size 1024 -memory 4096 -avd "${E
132
log "Waiting for Android emulator startup"
133
timeout ${ANDROID_EMULATOR_LAUNCH_TIMEOUT} adb wait-for-any-device
134
135
+log "Find libc++_shared.so"
136
+find / -name 'libc++_shared.so' || true
137
+
138
+log "Find libFoundation.so"
139
+find / -name 'lib*Foundation*.so' || true
140
141
log "Prepare Swift test package"
142
143
# create a staging folder where we copy the test executable
0 commit comments