Skip to content

Commit

Permalink
RISC-V: update features2d test after module rename (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshabunin authored Nov 20, 2024
1 parent 7010246 commit 36bb9ce
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/OCV-Nightly-RISCV.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
REMOTE_DATA: './testdata'
TEST_RUNNER: 'ssh lichee1'
BRANCH: '${{ matrix.branch }}'
MOD_FEATURES: "${{ matrix.branch == '4.x' && 'features2d' || 'features' }}"
strategy:
max-parallel: 1
matrix:
Expand Down Expand Up @@ -150,13 +151,13 @@ jobs:
OPENCV_TEST_DATA_PATH=${REMOTE_DATA} \
${REMOTE_BIN}/opencv_test_dnn \
--gtest_filter=*:-Test_Int8_layers.InnerProduct/0:Test_Caffe_layers.InnerProduct/0:Test_Caffe_layers.layer_prelu_fc/0:Test_TensorFlow_layers.matmul/0:Test_TensorFlow_layers.lstm/0:Test_Torch_layers.run_reshape_single_sample/0
- name: Run features2d test
- name: Run features test
timeout-minutes: 60
if: ${{ always() && steps.build.outcome == 'success' && steps.deploy.outcome == 'success' }}
run: |
$TEST_RUNNER \
OPENCV_TEST_DATA_PATH=${REMOTE_DATA} \
${REMOTE_BIN}/opencv_test_features2d
${REMOTE_BIN}/opencv_test_${MOD_FEATURES}
- name: Run objdetect test
timeout-minutes: 60
if: ${{ always() && steps.build.outcome == 'success' && steps.deploy.outcome == 'success' }}
Expand Down Expand Up @@ -195,6 +196,7 @@ jobs:
TEST_RUNNER: 'ssh canmv1'
TEST_OPT: '--test_tag_skip=mem_512mb'
BRANCH: '${{ matrix.branch }}'
MOD_FEATURES: "${{ matrix.branch == '4.x' && 'features2d' || 'features' }}"
strategy:
max-parallel: 1
matrix:
Expand Down Expand Up @@ -311,13 +313,13 @@ jobs:
$TEST_RUNNER \
OPENCV_TEST_DATA_PATH=${REMOTE_DATA} \
${REMOTE_BIN}/opencv_test_dnn ${TEST_OPT} --gtest_filter=*:-Test_Caffe_layers.InnerProduct/0
- name: Run features2d test
- name: Run features test
timeout-minutes: 60
if: ${{ always() && steps.build.outcome == 'success' && steps.deploy.outcome == 'success' }}
run: |
$TEST_RUNNER \
OPENCV_TEST_DATA_PATH=${REMOTE_DATA} \
${REMOTE_BIN}/opencv_test_features2d ${TEST_OPT} --gtest_filter=*:-KAZE/DetectorScaleInvariance.scale/*
${REMOTE_BIN}/opencv_test_${MOD_FEATURES} ${TEST_OPT} --gtest_filter=*:-KAZE/DetectorScaleInvariance.scale/*
- name: Run objdetect test
timeout-minutes: 60
if: ${{ always() && steps.build.outcome == 'success' && steps.deploy.outcome == 'success' }}
Expand Down

0 comments on commit 36bb9ce

Please sign in to comment.