Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/OCV-PR-Windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
# NOTE: Debugging
# fail-fast: true
fail-fast: false
max-parallel: 2
max-parallel: 3
matrix:
arch: [ x86, x64 ] # , arm64
arch: [ x86, x64, arm64 ]
config: [ base ]
include:
- arch: x86
Expand All @@ -63,12 +63,12 @@ jobs:
runner: opencv-cn-win
vs: 'Visual Studio 16 2019'
cmake_arch: x64
# - arch: arm64
# config: base
# runner: windows-11-arm
# vs: 'Visual Studio 17 2022'
# cmake_arch: ARM64
# no_opencl: true
- arch: arm64
config: base
runner: windows-11-arm
vs: 'Visual Studio 17 2022'
cmake_arch: ARM64
no_opencl: true

branch: ${{ fromJSON(needs.branch_eval.outputs.branches )}}
defaults:
Expand Down Expand Up @@ -158,8 +158,8 @@ jobs:
uses: ./run-tests
env:
OPENCV_TEST_DATA_PATH: '${{ github.workspace }}/opencv_extra/testdata'
OPENCV_TEST_REQUIRE_DATA: 1
OPENCV_TEST_CHECK_OPTIONAL_DATA: 1
OPENCV_TEST_REQUIRE_DATA: ${{ matrix.arch == 'arm64' && '0' || '1' }}
OPENCV_TEST_CHECK_OPTIONAL_DATA: ${{ matrix.arch == 'arm64' && '0' || '1' }}
PYTHONPATH: '${{ github.workspace }}/${{ env.MAIN_BUILD_DIR }}/python_loader:$PYTHONPATH'
with:
workdir: '${{ github.workspace }}'
Expand Down
Loading