File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -136,6 +136,16 @@ jobs:
136
136
run : |
137
137
cd $HOME/build
138
138
ninja -j ${{ env.PARALLEL_JOBS }} | tee $HOME/build/build-log.txt
139
+ - name : Accuracy:cudev
140
+ timeout-minutes : 60
141
+ if : ${{ always() && steps.build-opencv.outcome == 'success' }}
142
+ run : cd $HOME/build && xvfb-run -a bin/opencv_test_cudev --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
143
+ - name : Accuracy:core
144
+ timeout-minutes : 60
145
+ if : ${{ always() && steps.build-opencv.outcome == 'success' }}
146
+ run : cd $HOME/build && xvfb-run -a bin/opencv_test_core --test_threads=${{ env.PARALLEL_JOBS }} --gtest_filter=${{ env.GTEST_FILTER_STRING }} ${{ env.EXTRA_GTEST_OPTIONS }}
147
+ env :
148
+ GTEST_FILTER_STRING : ' *GPU*:*Gpu*:*CUDA*'
139
149
- name : Accuracy:dnn
140
150
timeout-minutes : 60
141
151
if : ${{ always() && steps.build-opencv.outcome == 'success' }}
Original file line number Diff line number Diff line change @@ -137,6 +137,16 @@ jobs:
137
137
run : |
138
138
cd $HOME/build
139
139
ninja -j ${{ env.PARALLEL_JOBS }} | tee $HOME/build/build-log.txt
140
+ - name : Accuracy:cudev
141
+ timeout-minutes : 60
142
+ if : ${{ always() && steps.build-opencv.outcome == 'success' }}
143
+ run : cd $HOME/build && xvfb-run -a bin/opencv_test_cudev --test_threads=${{ env.PARALLEL_JOBS }} ${{ env.EXTRA_GTEST_OPTIONS }}
144
+ - name : Accuracy:core
145
+ timeout-minutes : 60
146
+ if : ${{ always() && steps.build-opencv.outcome == 'success' }}
147
+ run : cd $HOME/build && xvfb-run -a bin/opencv_test_core --test_threads=${{ env.PARALLEL_JOBS }} --gtest_filter=${{ env.GTEST_FILTER_STRING }} ${{ env.EXTRA_GTEST_OPTIONS }}
148
+ env :
149
+ GTEST_FILTER_STRING : ' *GPU*:*Gpu*:*CUDA*'
140
150
- name : Accuracy:DNN_AUTO
141
151
timeout-minutes : 60
142
152
if : ${{ always() && steps.build-opencv.outcome == 'success' }}
You can’t perform that action at this time.
0 commit comments