Skip to content

Commit a4cfdc1

Browse files
authored
update comments for nodejs binding artifact preparation. (#19425)
### Description document update as a following-up for #19274
1 parent 23996bb commit a4cfdc1

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

tools/ci_build/github/azure-pipelines/templates/c-api-cpu.yml

+44
Original file line numberDiff line numberDiff line change
@@ -534,6 +534,50 @@ stages:
534534
workingDirectory: '$(Build.SourcesDirectory)'
535535
displayName: 'Testing: force EOL to lf on windows for /js/**'
536536
537+
##################################################################
538+
# Node.js binding artifacts preparation
539+
#
540+
# This stage prepares Node.js binding artifacts for publishing. The artifacts support the following platforms:
541+
# - Windows x64 with DML support
542+
# - Windows arm64 with DML support
543+
# - Linux x64 with TensorRT support
544+
# - Linux arm64 (CPU only)
545+
# - macOS x64 (CPU only)
546+
# - macOS arm64 (CPU only)
547+
#
548+
# ORT Node.js binding artifacts contain 2 parts:
549+
# 1. ONNX Runtime native shared libraries and their dependencies
550+
# - Windows (x64, arm64):
551+
# - onnxruntime.dll
552+
# - DirectML.dll
553+
# - Linux (x64, arm64):
554+
# - libonnxruntime.so{.version}
555+
# - libonnxruntime_providers_shared.so
556+
# - libonnxruntime_providers_{provider}.so
557+
# - macOS (x64, arm64):
558+
# - libonnxruntime.dylib
559+
# 2. ONNX Runtime Node.js binding
560+
# - onnxruntime_binding.node
561+
#
562+
# For windows platform, the artifact is named as 'onnxruntime-nodejs-win-x64-dml' for x64, and
563+
# 'onnxruntime-nodejs-win-arm64-dml' for arm64. Each artifact contains both (1) and (2).
564+
#
565+
# For Linux and macOS platforms, (1) and (2) are packed into separate artifacts.
566+
# The following artifacts contain (1):
567+
# - onnxruntime-osx
568+
# - onnxruntime-linux-x64-tensorrt
569+
# - onnxruntime-linux-aarch64
570+
# The following artifacts contain (2):
571+
# - drop-onnxruntime-nodejs-linux-x64-tensorrt
572+
# - drop-onnxruntime-nodejs-linux-aarch64
573+
# - drop-onnxruntime-nodejs-osx-x86_64
574+
# - drop-onnxruntime-nodejs-osx-arm64
575+
#
576+
# All binary artifacts will eventually be put into folder before packaging 'onnxruntime-node':
577+
# $(Build.SourcesDirectory)\js\node\bin\napi-v3\{os}\{cpu_arch}\
578+
#
579+
# {os} is one of 'win32', 'darwin', 'linux' and {cpu_arch} is one of 'x64', 'arm64'.
580+
537581
- task: DownloadPipelineArtifact@0
538582
displayName: 'Download Pipeline Artifact - NuGet (OSX)'
539583
inputs:

0 commit comments

Comments
 (0)