File tree Expand file tree Collapse file tree 5 files changed +46
-0
lines changed Expand file tree Collapse file tree 5 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -187,6 +187,16 @@ jobs:
187
187
timeout-minutes : 60
188
188
if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
189
189
run : cd $HOME/build && xvfb-run -a bin/opencv_test_img_hash --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }}
190
+ - name : Accuracy:img_aug
191
+ timeout-minutes : 60
192
+ if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
193
+ run : |
194
+ cd $HOME/build
195
+ if [[ -f bin/opencv_test_imgaug ]]; then
196
+ xvfb-run -a bin/opencv_test_imgaug --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }}
197
+ else
198
+ echo "No Augmentation module"
199
+ fi
190
200
- name : Accuracy:imgcodecs
191
201
timeout-minutes : 60
192
202
if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
Original file line number Diff line number Diff line change @@ -191,6 +191,16 @@ jobs:
191
191
timeout-minutes : 60
192
192
if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
193
193
run : cd $HOME/build && xvfb-run -a bin/opencv_test_img_hash --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }}
194
+ - name : Accuracy:img_aug
195
+ timeout-minutes : 60
196
+ if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
197
+ run : |
198
+ cd $HOME/build
199
+ if [[ -f bin/opencv_test_imgaug ]]; then
200
+ xvfb-run -a bin/opencv_test_imgaug --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }}
201
+ else
202
+ echo "No Augmentation module"
203
+ fi
194
204
- name : Accuracy:imgcodecs
195
205
timeout-minutes : 60
196
206
if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
Original file line number Diff line number Diff line change @@ -183,6 +183,12 @@ jobs:
183
183
timeout-minutes : 60
184
184
if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
185
185
run : cd ${{ github.workspace }}\build && bin\opencv_test_img_hash.exe --skip_unstable --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=%PARALLEL_JOBS%
186
+ - name : Accuracy:imgaug
187
+ timeout-minutes : 60
188
+ if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
189
+ run : |
190
+ cd ${{ github.workspace }}\build
191
+ if exist bin\opencv_test_imgaug.exe (bin\opencv_test_imgaug.exe --skip_unstable --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=%PARALLEL_JOBS%) else (echo "No Augmentation module")
186
192
- name : Accuracy:imgcodecs
187
193
timeout-minutes : 60
188
194
if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
Original file line number Diff line number Diff line change @@ -199,6 +199,16 @@ jobs:
199
199
if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
200
200
run : ./bin/opencv_test_img_hash --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=$PARALLEL_JOBS
201
201
working-directory : ${{ github.workspace }}/build
202
+ - name : Accuracy:img_aug
203
+ timeout-minutes : 60
204
+ if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
205
+ run : |
206
+ if [[ -f bin/opencv_test_imgaug ]]; then
207
+ ./bin/opencv_test_imgaug --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }}
208
+ else
209
+ echo "No Augmentation module"
210
+ fi
211
+ working-directory : ${{ github.workspace }}/build
202
212
- name : Accuracy:imgcodecs
203
213
timeout-minutes : 60
204
214
if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
Original file line number Diff line number Diff line change @@ -200,6 +200,16 @@ jobs:
200
200
if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
201
201
run : ./bin/opencv_test_img_hash --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=$PARALLEL_JOBS
202
202
working-directory : ${{ github.workspace }}/build
203
+ - name : Accuracy:img_aug
204
+ timeout-minutes : 60
205
+ if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
206
+ run : |
207
+ if [[ -f bin/opencv_test_imgaug ]]; then
208
+ ./bin/opencv_test_imgaug --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=${{ env.PARALLEL_JOBS }}
209
+ else
210
+ echo "No Augmentation module"
211
+ fi
212
+ working-directory : ${{ github.workspace }}/build
203
213
- name : Accuracy:imgcodecs
204
214
timeout-minutes : 60
205
215
if : ${{ always() && steps.build-opencv-contrib.outcome == 'success' }}
You can’t perform that action at this time.
0 commit comments