We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42cb6c1 commit 960bc00Copy full SHA for 960bc00
1 file changed
.github/workflows/llm-android.yml
@@ -130,7 +130,11 @@ jobs:
130
./gradlew connectedCheck $GRADLE_ARGS; TEST_EXIT_CODE=$?
131
kill $LOGCAT_PID || true
132
# Extract response from logcat
133
+ echo "=== Searching for LLAMA_RESPONSE in logcat ==="
134
+ grep "LLAMA_RESPONSE" /tmp/logcat.txt || echo "No LLAMA_RESPONSE found in logcat"
135
grep "LLAMA_RESPONSE" /tmp/logcat.txt | sed 's/.*LLAMA_RESPONSE: //' | grep -v "BEGIN_RESPONSE\|END_RESPONSE" > /tmp/response.txt || true
136
+ echo "=== Response file contents ==="
137
+ cat /tmp/response.txt || echo "Response file empty or not created"
138
exit $TEST_EXIT_CODE
139
140
- name: Add model response to summary
0 commit comments