Skip to content

Commit 67a9161

Browse files
committed
fixup! Add custom action and unified Linux build
1 parent fcce989 commit 67a9161

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

scripts/runner.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ def run_one(name, cmd, logname, env, args):
179179

180180
actual_exe = args.workdir / args.bindir / Path(actual_exe)
181181
if not actual_exe.exists() or not actual_exe.is_file():
182-
print("Executable not found: {}".format(actual_exe))
183-
res = -3
182+
print("::error::Executable not found: {}".format(actual_exe))
183+
res = False
184184
else:
185185
cmd = wrap + [actual_exe] + extra_args
186186
logname = args.workdir / args.logdir / (args.prefix + name + ".txt")

scripts/test-plan.json

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"opencv_test_face",
3939
"opencv_test_fuzzy",
4040
"opencv_test_hdf",
41-
"opencv_test_img_aug",
4241
"opencv_test_img_hash",
4342
"opencv_test_intensity_transform",
4443
"opencv_test_line_descriptor",

0 commit comments

Comments
 (0)