File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 19
19
20
20
jobs :
21
21
Build :
22
- runs-on : windows-2019
22
+ runs-on : windows-2025
23
23
strategy :
24
24
fail-fast : false
25
25
matrix :
48
48
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
49
49
fi
50
50
- name : Checkout
51
- uses : actions/checkout@v3
51
+ uses : actions/checkout@v4
52
52
with :
53
53
submodules : false
54
54
fetch-depth : 0
79
79
80
80
Test :
81
81
needs : [Build]
82
- runs-on : windows-2019
82
+ runs-on : windows-2025
83
83
defaults :
84
84
run :
85
85
shell : cmd
95
95
ACTIONS_ALLOW_UNSECURE_COMMANDS : true
96
96
OPENCV_TEST_DATA_PATH : ${{ github.workspace }}\opencv_extra\testdata
97
97
PYLINT_TEST_FILE : ${{ github.workspace }}\opencv\samples\python\squares.py
98
+ PlatformToolset : v143
98
99
steps :
99
100
- name : Cleanup
100
101
shell : bash
@@ -103,7 +104,7 @@ jobs:
103
104
rm -rf ./.??* || true
104
105
working-directory : ${{ github.workspace }}
105
106
- name : Checkout
106
- uses : actions/checkout@v3
107
+ uses : actions/checkout@v4
107
108
with :
108
109
submodules : true
109
110
fetch-depth : 0
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ def main():
163
163
files_outside_package_dir = {"cv2" : ["LICENSE.txt" , "LICENSE-3RD-PARTY.txt" ]}
164
164
165
165
ci_cmake_generator = (
166
- ["-G" , "Visual Studio 14" + ( " Win64" if is64 else "" ) ]
166
+ ["-G" , "Visual Studio 17 2022" ]
167
167
if os .name == "nt"
168
168
else ["-G" , "Unix Makefiles" ]
169
169
)
You can’t perform that action at this time.
0 commit comments