mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
build: split nodejs binding build and test to avoid timeout issue (#4188)
* split nodejs binding build and test * enable nodejs tests
This commit is contained in:
parent
117b2e7743
commit
73bc6be5d1
4 changed files with 17 additions and 3 deletions
|
|
@ -30,7 +30,6 @@ endif()
|
|||
add_custom_target(nodejs_binding_wrapper ALL
|
||||
COMMAND ${NPM_CLI} ci --ort-skip-build
|
||||
COMMAND ${NPM_CLI} run build -- --onnxruntime-build-dir=${CMAKE_CURRENT_BINARY_DIR} --config=${CMAKE_BUILD_TYPE}
|
||||
COMMAND ${NPM_CLI} test -- --timeout=10000
|
||||
WORKING_DIRECTORY ${NODEJS_BINDING_ROOT}
|
||||
COMMENT "Using cmake-js to build OnnxRuntime Node.js binding")
|
||||
add_dependencies(nodejs_binding_wrapper onnxruntime)
|
||||
|
|
|
|||
|
|
@ -22,5 +22,5 @@ describe('E2E Tests - InferenceSession.run()', async () => {
|
|||
const result = await session!.run({'data_0': input0}, ['softmaxout_1']);
|
||||
assertTensorEqual(result.softmaxout_1, expectedOutput0);
|
||||
}
|
||||
}).timeout('1200s');
|
||||
}).timeout('120s');
|
||||
});
|
||||
|
|
|
|||
|
|
@ -295,6 +295,9 @@ def parse_arguments():
|
|||
parser.add_argument(
|
||||
"--skip_winml_tests", action='store_true',
|
||||
help="Explicitly disable all WinML related tests")
|
||||
parser.add_argument(
|
||||
"--skip_nodejs_tests", action='store_true',
|
||||
help="Explicitly disable all Node.js binding tests")
|
||||
parser.add_argument(
|
||||
"--enable_msvc_static_runtime", action='store_true',
|
||||
help="Enable static linking of MSVC runtimes.")
|
||||
|
|
@ -1401,6 +1404,13 @@ def nuphar_run_python_tests(build_dir, configs):
|
|||
cwd=cwd, dll_path=dll_path)
|
||||
|
||||
|
||||
def run_nodejs_tests(nodejs_binding_dir):
|
||||
args = ['npm', 'test', '--', '--timeout=2000']
|
||||
if is_windows():
|
||||
args = ['cmd', '/c'] + args
|
||||
run_subprocess(args, cwd=nodejs_binding_dir)
|
||||
|
||||
|
||||
def build_python_wheel(
|
||||
source_dir, build_dir, configs, use_cuda, use_ngraph, use_dnnl,
|
||||
use_tensorrt, use_openvino, use_nuphar, use_vitisai, wheel_name_suffix,
|
||||
|
|
@ -1779,6 +1789,11 @@ def main():
|
|||
if args.enable_pybind and not args.skip_onnx_tests and args.use_nuphar:
|
||||
nuphar_run_python_tests(build_dir, configs)
|
||||
|
||||
# run node.js binding tests
|
||||
if args.build_nodejs and not args.skip_nodejs_tests:
|
||||
nodejs_binding_dir = os.path.normpath(os.path.join(source_dir, "nodejs"))
|
||||
run_nodejs_tests(nodejs_binding_dir)
|
||||
|
||||
if args.build:
|
||||
if args.build_wheel:
|
||||
nightly_build = bool(os.getenv('NIGHTLY_BUILD') == '1')
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@ jobs:
|
|||
del wheel_filename_file
|
||||
python.exe -m pip install -q --upgrade %WHEEL_FILENAME%
|
||||
set PATH=$(Build.BinariesDirectory)\$(BuildConfig)\$(BuildConfig);%PATH%
|
||||
python $(Build.SourcesDirectory)\tools\ci_build\build.py --config $(BuildConfig) --build_dir $(Build.BinariesDirectory) --skip_submodule_sync --build_shared_lib --test --cmake_generator "Visual Studio 16 2019" --use_dnnl --build_wheel --enable_onnx_tests
|
||||
python $(Build.SourcesDirectory)\tools\ci_build\build.py --config $(BuildConfig) --build_dir $(Build.BinariesDirectory) --skip_submodule_sync --build_shared_lib --build_nodejs --test --cmake_generator "Visual Studio 16 2019" --use_dnnl --build_wheel --enable_onnx_tests
|
||||
|
||||
workingDirectory: '$(Build.BinariesDirectory)\$(BuildConfig)\$(BuildConfig)'
|
||||
displayName: 'Run tests'
|
||||
|
|
|
|||
Loading…
Reference in a new issue