File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 19
19
20
20
jobs :
21
21
Build :
22
- runs-on : windows-2022
22
+ runs-on : windows-2025
23
23
strategy :
24
24
fail-fast : false
25
25
matrix :
82
82
83
83
Test :
84
84
needs : [Build]
85
- runs-on : windows-2022
85
+ runs-on : windows-2025
86
86
defaults :
87
87
run :
88
88
shell : cmd
@@ -110,6 +110,15 @@ jobs:
110
110
with :
111
111
submodules : true
112
112
fetch-depth : 0
113
+ - name : Show current commit and branch
114
+ run : |
115
+ git rev-parse --abbrev-ref HEAD
116
+ git log -1 --oneline
117
+
118
+ - name : Print location of np.fromstring
119
+ run : |
120
+ findstr /C:"np.fromstring" opencv\modules\python\test\tests_common.py || echo "No fromstring found"
121
+
113
122
- name : Set up Python ${{ matrix.python-version }}
114
123
uses : actions/setup-python@v4
115
124
with :
You can’t perform that action at this time.
0 commit comments