@@ -534,6 +534,50 @@ stages:
534
534
workingDirectory: '$(Build.SourcesDirectory)'
535
535
displayName: 'Testing: force EOL to lf on windows for /js/**'
536
536
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
+
537
581
- task : DownloadPipelineArtifact@0
538
582
displayName : ' Download Pipeline Artifact - NuGet (OSX)'
539
583
inputs :
0 commit comments