We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0a22a6 commit 5626568Copy full SHA for 5626568
.github/workflows/windows.yml
@@ -64,6 +64,7 @@ jobs:
64
if: steps.opencv-cache.outputs.cache-hit != 'true'
65
shell: powershell
66
run: |
67
+ $ErrorActionPreference = 'Continue'
68
cmake `
69
-C cmake/opencv_build_options.cmake `
70
-S opencv `
@@ -77,6 +78,7 @@ jobs:
77
78
-D OPENCV_EXTRA_MODULES_PATH="$env:GITHUB_WORKSPACE/opencv_contrib/modules" `
79
-D CMAKE_INSTALL_PREFIX="$env:GITHUB_WORKSPACE/opencv_artifacts" `
80
*>&1 | Tee-Object -FilePath "$env:TEMP\opencv-configure.log"
81
+ if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
82
83
- name: Verify OpenCV cmake features
84
0 commit comments