Skip to content

Commit f683cf6

Browse files
committed
Another trial to fix ebvironment variables interpretation on Windows.
1 parent 432863c commit f683cf6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/OCV-PR-5.x-W10.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,10 @@ jobs:
131131
- name: Accuracy:DNN_Classic
132132
timeout-minutes: 60
133133
if: ${{ always() && steps.build-opencv.outcome == 'success' }}
134-
run: set OPENCV_FORCE_DNN_ENGINE="1" && cd ${{ github.workspace }}\build && bin\opencv_test_dnn.exe --skip_unstable --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=%PARALLEL_JOBS%
134+
run: |
135+
set OPENCV_FORCE_DNN_ENGINE=1
136+
cd ${{ github.workspace }}\build
137+
bin\opencv_test_dnn.exe --skip_unstable --gtest_filter=${{ env.GTEST_FILTER_STRING }} --test_threads=%PARALLEL_JOBS%
135138
- name: Accuracy:features2d
136139
timeout-minutes: 60
137140
if: ${{ always() && steps.build-opencv.outcome == 'success' }}

0 commit comments

Comments
 (0)