We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f79d8b0 commit 359795bCopy full SHA for 359795b
.github/workflows/main.yml
@@ -215,7 +215,8 @@ jobs:
215
adb root
216
adb remount
217
adb push ${{ github.workspace }}/. /data/local/tmp/
218
- adb shell "sh /data/local/tmp/commands.sh"
+ adb shell "sh /data/local/tmp/commands.sh; echo EXIT_CODE=\$?" | tee /tmp/adb_output.log
219
+ grep -q "EXIT_CODE=0" /tmp/adb_output.log
220
221
- name: test sqlite-sync
222
if: contains(matrix.name, 'linux') || matrix.name == 'windows' || ( matrix.name == 'macos' && matrix.arch != 'x86_64' )
0 commit comments