File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
- name : OCV PR:4.x Android aarch64 build and test
1
+ name : OCV PR:4.x Android aarch64 build
2
2
3
3
on :
4
4
pull_request :
@@ -90,30 +90,32 @@ jobs:
90
90
run : python3 $GIT_CACHE/warnings-handling.py
91
91
working-directory : ${{ github.workspace }}/build
92
92
- name : Touch device
93
+ if : 0
93
94
run : |
94
95
${{ env.ANDROID_HOME }}/platform-tools/adb kill-server
95
96
${{ env.ANDROID_HOME }}/platform-tools/adb start-server
96
97
${{ env.ANDROID_HOME }}/platform-tools/adb devices
97
98
${{ env.ANDROID_HOME }}/platform-tools/adb shell cat /proc/cpuinfo
98
99
- name : Start adb logging
100
+ if : 0
99
101
run : |
100
102
rm -f android_logcat.log
101
103
${{ env.ANDROID_HOME }}/platform-tools/adb logcat -c
102
104
nohup ${{ env.ANDROID_HOME }}/platform-tools/adb logcat 2>&1 | tee android_logcat.log &
103
105
- name : Test Java
104
106
timeout-minutes : 60
105
107
id : java-test
106
- if : ${{ always() && steps.build-opencv.outcome == 'success' }}
108
+ if : 0 # ${{ always() && steps.build-opencv.outcome == 'success' }}
107
109
run : |
108
110
${{ env.ANDROID_HOME }}/platform-tools/adb uninstall org.opencv.tests || 0
109
111
./gradlew -i tests_module:connectedAndroidTest
110
112
working-directory : ${{ github.workspace }}/build/android_test
111
113
- name : Stop adb logging
112
114
run : ${{ env.ANDROID_HOME }}/platform-tools/adb kill-server
113
- if : ${{ always() }}
115
+ if : 0 # ${{ always() }}
114
116
- name : Save Unit Test Results
115
117
timeout-minutes : 5
116
- if : ${{ always() }}
118
+ if : 0 # ${{ always() }}
117
119
uses : actions/upload-artifact@v4
118
120
with :
119
121
name : android-junit-html
You can’t perform that action at this time.
0 commit comments