mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-07 04:39:07 +00:00
* build for .net5 * only reference cswinrt for .net5 * remove netstandard2.0 references * upgrade language version * net5 * remove extra comment closure * add targetframework * set target framework * remove net* * pep8 errors * make test project build with .net windows SDK projection * disable c# builds for non-x64 builds * fix pep8 errors * disable for store build * fix tests * remove cswinrt and sdk references from package * bump cswinrt down to 1.0.1 * fix bin path Co-authored-by: Sheil Kumar <sheilk@microsoft.com>
493 lines
25 KiB
Python
493 lines
25 KiB
Python
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
|
|
import argparse
|
|
import sys
|
|
import os
|
|
|
|
|
|
def parse_arguments():
|
|
parser = argparse.ArgumentParser(description="ONNX Runtime create nuget spec script "
|
|
"(for hosting native shared library artifacts)",
|
|
usage='')
|
|
# Main arguments
|
|
parser.add_argument("--package_name", required=True, help="ORT package name. Eg: Microsoft.ML.OnnxRuntime.Gpu")
|
|
parser.add_argument("--package_version", required=True, help="ORT package version. Eg: 1.0.0")
|
|
parser.add_argument("--target_architecture", required=True, help="Eg: x64")
|
|
parser.add_argument("--build_config", required=True, help="Eg: RelWithDebInfo")
|
|
parser.add_argument("--ort_build_path", required=True, help="ORT build directory.")
|
|
parser.add_argument("--native_build_path", required=True, help="Native build output directory.")
|
|
parser.add_argument("--packages_path", required=True, help="Nuget packages output directory.")
|
|
parser.add_argument("--sources_path", required=True, help="OnnxRuntime source code root.")
|
|
parser.add_argument("--commit_id", required=True, help="The last commit id included in this package.")
|
|
parser.add_argument("--is_store_build", default=False, type=lambda x: x.lower() == 'true',
|
|
help="Build for the Microsoft Store")
|
|
parser.add_argument("--is_release_build", required=False, default=None, type=str,
|
|
help="Flag indicating if the build is a release build. Accepted values: true/false.")
|
|
parser.add_argument("--execution_provider", required=False, default='None', type=str,
|
|
choices=['dnnl', 'openvino', 'tensorrt', 'None'],
|
|
help="The selected execution provider for this build.")
|
|
|
|
return parser.parse_args()
|
|
|
|
|
|
def generate_id(list, package_name):
|
|
list.append('<id>' + package_name + '</id>')
|
|
|
|
|
|
def generate_version(list, package_version):
|
|
list.append('<version>' + package_version + '</version>')
|
|
|
|
|
|
def generate_authors(list, authors):
|
|
list.append('<authors>' + authors + '</authors>')
|
|
|
|
|
|
def generate_owners(list, owners):
|
|
list.append('<owners>' + owners + '</owners>')
|
|
|
|
|
|
def generate_description(list, description):
|
|
list.append('<description>' + description + '</description>')
|
|
|
|
|
|
def generate_copyright(list, copyright):
|
|
list.append('<copyright>' + copyright + '</copyright>')
|
|
|
|
|
|
def generate_tags(list, tags):
|
|
list.append('<tags>' + tags + '</tags>')
|
|
|
|
|
|
def generate_icon_url(list, icon_url):
|
|
list.append('<iconUrl>' + icon_url + '</iconUrl>')
|
|
|
|
|
|
def generate_license(list):
|
|
list.append('<license type="file">LICENSE.txt</license>')
|
|
|
|
|
|
def generate_project_url(list, project_url):
|
|
list.append('<projectUrl>' + project_url + '</projectUrl>')
|
|
|
|
|
|
def generate_repo_url(list, repo_url, commit_id):
|
|
list.append('<repository type="git" url="' + repo_url + '"' + ' commit="' + commit_id + '" />')
|
|
|
|
|
|
def generate_dependencies(list, package_name, version):
|
|
dml_dependency = '<dependency id="Microsoft.AI.DirectML" version="1.4.0"/>'
|
|
|
|
if (package_name == 'Microsoft.AI.MachineLearning'):
|
|
list.append('<dependencies>')
|
|
|
|
# Support .Net Core
|
|
list.append('<group targetFramework="net5.0">')
|
|
list.append(dml_dependency)
|
|
list.append('</group>')
|
|
# UAP10.0.16299, This is the earliest release of the OS that supports .NET Standard apps
|
|
list.append('<group targetFramework="UAP10.0.16299">')
|
|
list.append(dml_dependency)
|
|
list.append('</group>')
|
|
# Support Native C++
|
|
list.append('<group targetFramework="native">')
|
|
list.append(dml_dependency)
|
|
list.append('</group>')
|
|
|
|
list.append('</dependencies>')
|
|
else:
|
|
include_dml = package_name == 'Microsoft.ML.OnnxRuntime.DirectML'
|
|
|
|
list.append('<dependencies>')
|
|
# Support .Net Core
|
|
list.append('<group targetFramework="NETCOREAPP">')
|
|
list.append('<dependency id="Microsoft.ML.OnnxRuntime.Managed"' + ' version="' + version + '"/>')
|
|
if include_dml:
|
|
list.append(dml_dependency)
|
|
list.append('</group>')
|
|
# Support .Net Standard
|
|
list.append('<group targetFramework="NETSTANDARD">')
|
|
list.append('<dependency id="Microsoft.ML.OnnxRuntime.Managed"' + ' version="' + version + '"/>')
|
|
if include_dml:
|
|
list.append(dml_dependency)
|
|
list.append('</group>')
|
|
# Support .Net Framework
|
|
list.append('<group targetFramework="NETFRAMEWORK">')
|
|
list.append('<dependency id="Microsoft.ML.OnnxRuntime.Managed"' + ' version="' + version + '"/>')
|
|
if include_dml:
|
|
list.append(dml_dependency)
|
|
list.append('</group>')
|
|
# Support Native C++
|
|
if include_dml:
|
|
list.append('<group targetFramework="native">')
|
|
list.append(dml_dependency)
|
|
list.append('</group>')
|
|
|
|
list.append('</dependencies>')
|
|
|
|
|
|
def get_env_var(key):
|
|
return os.environ.get(key)
|
|
|
|
|
|
def generate_release_notes(list):
|
|
list.append('<releaseNotes>')
|
|
list.append('Release Def:')
|
|
|
|
branch = get_env_var('BUILD_SOURCEBRANCH')
|
|
list.append('\t' + 'Branch: ' + (branch if branch is not None else ''))
|
|
|
|
version = get_env_var('BUILD_SOURCEVERSION')
|
|
list.append('\t' + 'Commit: ' + (version if version is not None else ''))
|
|
|
|
build_id = get_env_var('BUILD_BUILDID')
|
|
list.append('\t' + 'Build: https://aiinfra.visualstudio.com/Lotus/_build/results?buildId=' +
|
|
(build_id if build_id is not None else ''))
|
|
|
|
list.append('</releaseNotes>')
|
|
|
|
|
|
def generate_metadata(list, args):
|
|
metadata_list = ['<metadata>']
|
|
generate_id(metadata_list, args.package_name)
|
|
generate_version(metadata_list, args.package_version)
|
|
generate_authors(metadata_list, 'Microsoft')
|
|
generate_owners(metadata_list, 'Microsoft')
|
|
generate_description(metadata_list, 'This package contains native shared library artifacts '
|
|
'for all supported platforms of ONNX Runtime.')
|
|
generate_copyright(metadata_list, '\xc2\xa9 ' + 'Microsoft Corporation. All rights reserved.')
|
|
generate_tags(metadata_list, 'ONNX ONNX Runtime Machine Learning')
|
|
generate_icon_url(metadata_list, 'https://go.microsoft.com/fwlink/?linkid=2049168')
|
|
generate_license(metadata_list)
|
|
generate_project_url(metadata_list, 'https://github.com/Microsoft/onnxruntime')
|
|
generate_repo_url(metadata_list, 'https://github.com/Microsoft/onnxruntime.git', args.commit_id)
|
|
generate_dependencies(metadata_list, args.package_name, args.package_version)
|
|
generate_release_notes(metadata_list)
|
|
metadata_list.append('</metadata>')
|
|
|
|
list += metadata_list
|
|
|
|
|
|
def generate_files(list, args):
|
|
files_list = ['<files>']
|
|
|
|
is_cpu_package = args.package_name in ['Microsoft.ML.OnnxRuntime', 'Microsoft.ML.OnnxRuntime.NoOpenMP']
|
|
is_mklml_package = args.package_name == 'Microsoft.ML.OnnxRuntime.MKLML'
|
|
is_cuda_gpu_package = args.package_name == 'Microsoft.ML.OnnxRuntime.Gpu'
|
|
is_dml_package = args.package_name == 'Microsoft.ML.OnnxRuntime.DirectML'
|
|
is_windowsai_package = args.package_name == 'Microsoft.AI.MachineLearning'
|
|
|
|
includes_cuda = is_cuda_gpu_package or is_cpu_package # Why does the CPU package ship the cuda provider headers?
|
|
includes_winml = is_windowsai_package
|
|
includes_directml = (is_dml_package or is_windowsai_package) and not args.is_store_build and (
|
|
args.target_architecture == 'x64' or args.target_architecture == 'x86')
|
|
|
|
is_windows_build = is_windows()
|
|
|
|
nuget_dependencies = {}
|
|
|
|
if is_windows_build:
|
|
nuget_dependencies = {'mklml': 'mklml.dll',
|
|
'openmp': 'libiomp5md.dll',
|
|
'dnnl': 'dnnl.dll',
|
|
'tvm': 'tvm.dll',
|
|
'providers_shared_lib': 'onnxruntime_providers_shared.dll',
|
|
'dnnl_ep_shared_lib': 'onnxruntime_providers_dnnl.dll',
|
|
'tensorrt_ep_shared_lib': 'onnxruntime_providers_tensorrt.dll',
|
|
'openvino_ep_shared_lib': 'onnxruntime_providers_openvino.dll',
|
|
'onnxruntime_perf_test': 'onnxruntime_perf_test.exe',
|
|
'onnx_test_runner': 'onnx_test_runner.exe'}
|
|
|
|
copy_command = "copy"
|
|
runtimes_target = '" target="runtimes\\win-'
|
|
else:
|
|
nuget_dependencies = {'mklml': 'libmklml_intel.so',
|
|
'mklml_1': 'libmklml_gnu.so',
|
|
'openmp': 'libiomp5.so',
|
|
'dnnl': 'libdnnl.so.1',
|
|
'tvm': 'libtvm.so.0.5.1',
|
|
'providers_shared_lib': 'libonnxruntime_providers_shared.so',
|
|
'dnnl_ep_shared_lib': 'libonnxruntime_providers_dnnl.so',
|
|
'tensorrt_ep_shared_lib': 'libonnxruntime_providers_tensorrt.so',
|
|
'openvino_ep_shared_lib': 'libonnxruntime_providers_openvino.so',
|
|
'onnxruntime_perf_test': 'onnxruntime_perf_test',
|
|
'onnx_test_runner': 'onnx_test_runner'}
|
|
|
|
copy_command = "cp"
|
|
runtimes_target = '" target="runtimes\\linux-'
|
|
|
|
runtimes = '{}{}\\{}"'.format(runtimes_target,
|
|
args.target_architecture,
|
|
'uap' if args.is_store_build else 'native')
|
|
|
|
# Process headers
|
|
files_list.append('<file src=' + '"' + os.path.join(args.sources_path,
|
|
'include\\onnxruntime\\core\\session\\onnxruntime_*.h') +
|
|
'" target="build\\native\\include" />')
|
|
files_list.append('<file src=' + '"' +
|
|
os.path.join(args.sources_path,
|
|
'include\\onnxruntime\\core\\providers\\cpu\\cpu_provider_factory.h') +
|
|
'" target="build\\native\\include" />')
|
|
|
|
if includes_cuda:
|
|
files_list.append('<file src=' + '"' +
|
|
os.path.join(args.sources_path,
|
|
'include\\onnxruntime\\core\\providers\\cuda\\cuda_provider_factory.h') +
|
|
'" target="build\\native\\include" />')
|
|
|
|
if args.execution_provider == 'openvino':
|
|
files_list.append('<file src=' + '"' +
|
|
os.path.join(args.sources_path,
|
|
'include\\onnxruntime\\core\\providers\\openvino\\openvino_provider_factory.h') +
|
|
'" target="build\\native\\include" />')
|
|
|
|
if args.execution_provider == 'tensorrt':
|
|
files_list.append('<file src=' + '"' +
|
|
os.path.join(args.sources_path,
|
|
'include\\onnxruntime\\core\\providers\\tensorrt\\tensorrt_provider_factory.h') +
|
|
'" target="build\\native\\include" />')
|
|
|
|
if args.execution_provider == 'dnnl':
|
|
files_list.append('<file src=' + '"' +
|
|
os.path.join(args.sources_path,
|
|
'include\\onnxruntime\\core\\providers\\dnnl\\dnnl_provider_factory.h') +
|
|
'" target="build\\native\\include" />')
|
|
|
|
if includes_directml:
|
|
files_list.append('<file src=' + '"' +
|
|
os.path.join(args.sources_path,
|
|
'include\\onnxruntime\\core\\providers\\dml\\dml_provider_factory.h') +
|
|
'" target="build\\native\\include" />')
|
|
|
|
if includes_winml:
|
|
# Add microsoft.ai.machinelearning headers
|
|
files_list.append('<file src=' + '"' + os.path.join(args.ort_build_path, args.build_config,
|
|
'microsoft.ai.machinelearning.h') +
|
|
'" target="build\\native\\include\\abi\\Microsoft.AI.MachineLearning.h" />')
|
|
files_list.append('<file src=' + '"' + os.path.join(args.sources_path,
|
|
'winml\\api\\dualapipartitionattribute.h') +
|
|
'" target="build\\native\\include\\abi\\dualapipartitionattribute.h" />')
|
|
files_list.append('<file src=' + '"' + os.path.join(args.ort_build_path, args.build_config,
|
|
'microsoft.ai.machinelearning.native.h') +
|
|
'" target="build\\native\\include\\Microsoft.AI.MachineLearning.Native.h" />')
|
|
# Add custom operator headers
|
|
mlop_path = 'onnxruntime\\core\\providers\\dml\\dmlexecutionprovider\\inc\\mloperatorauthor.h'
|
|
files_list.append('<file src=' + '"' + os.path.join(args.sources_path, mlop_path) +
|
|
'" target="build\\native\\include" />')
|
|
# Process microsoft.ai.machinelearning.winmd
|
|
files_list.append('<file src=' + '"' + os.path.join(args.ort_build_path, args.build_config,
|
|
'microsoft.ai.machinelearning.winmd') +
|
|
'" target="lib\\uap\\Microsoft.AI.MachineLearning.winmd" />')
|
|
if args.target_architecture == 'x64' and not args.is_store_build:
|
|
interop_dll_path = 'Microsoft.AI.MachineLearning.Interop\\net5.0-windows10.0.19041.0'
|
|
interop_dll = interop_dll_path + '\\Microsoft.AI.MachineLearning.Interop.dll'
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, interop_dll) +
|
|
'" target="lib\\net5.0\\Microsoft.AI.MachineLearning.Interop.dll" />')
|
|
interop_pdb_path = 'Microsoft.AI.MachineLearning.Interop\\net5.0-windows10.0.19041.0'
|
|
interop_pdb = interop_pdb_path + '\\Microsoft.AI.MachineLearning.Interop.pdb'
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, interop_pdb) +
|
|
'" target="lib\\net5.0\\Microsoft.AI.MachineLearning.Interop.pdb" />')
|
|
|
|
# Process runtimes
|
|
# Process onnxruntime import lib, dll, and pdb
|
|
if is_windows_build:
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, 'onnxruntime.lib') +
|
|
runtimes + ' />')
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, 'onnxruntime.dll') +
|
|
runtimes + ' />')
|
|
if os.path.exists(os.path.join(args.native_build_path, 'onnxruntime.pdb')):
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, 'onnxruntime.pdb') +
|
|
runtimes + ' />')
|
|
else:
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, 'nuget-staging/usr/local/lib',
|
|
'libonnxruntime.so') + '" target="runtimes\\linux-' + args.target_architecture +
|
|
'\\native" />')
|
|
|
|
if includes_winml:
|
|
# Process microsoft.ai.machinelearning import lib, dll, and pdb
|
|
files_list.append('<file src=' + '"' +
|
|
os.path.join(args.native_build_path, 'microsoft.ai.machinelearning.lib') +
|
|
runtimes_target + args.target_architecture + '\\' +
|
|
('uap' if args.is_store_build else 'native') +
|
|
'\\Microsoft.AI.MachineLearning.lib" />')
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path,
|
|
'microsoft.ai.machinelearning.dll') +
|
|
runtimes_target + args.target_architecture + '\\' +
|
|
('uap' if args.is_store_build else 'native') +
|
|
'\\Microsoft.AI.MachineLearning.dll" />')
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path,
|
|
'microsoft.ai.machinelearning.pdb') +
|
|
runtimes_target + args.target_architecture + '\\' +
|
|
('uap' if args.is_store_build else 'native') +
|
|
'\\Microsoft.AI.MachineLearning.pdb" />')
|
|
# Process execution providers which are built as shared libs
|
|
if args.execution_provider == "tensorrt":
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path,
|
|
nuget_dependencies['providers_shared_lib']) +
|
|
runtimes_target + args.target_architecture + '\\native" />')
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path,
|
|
nuget_dependencies['tensorrt_ep_shared_lib']) +
|
|
runtimes_target + args.target_architecture + '\\native" />')
|
|
|
|
if args.execution_provider == "dnnl":
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path,
|
|
nuget_dependencies['providers_shared_lib']) +
|
|
runtimes_target + args.target_architecture + '\\native" />')
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path,
|
|
nuget_dependencies['dnnl_ep_shared_lib']) +
|
|
runtimes_target + args.target_architecture + '\\native" />')
|
|
|
|
if args.execution_provider == "openvino":
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path,
|
|
nuget_dependencies['providers_shared_lib']) +
|
|
runtimes_target + args.target_architecture + '\\native" />')
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path,
|
|
nuget_dependencies['openvino_ep_shared_lib']) +
|
|
runtimes_target + args.target_architecture + '\\native" />')
|
|
|
|
# process all other library dependencies
|
|
if is_cpu_package or is_cuda_gpu_package or is_dml_package or is_mklml_package:
|
|
# Process dnnl dependency
|
|
if os.path.exists(os.path.join(args.native_build_path, nuget_dependencies['dnnl'])):
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, nuget_dependencies['dnnl']) +
|
|
runtimes + ' />')
|
|
|
|
# Process mklml dependency
|
|
if os.path.exists(os.path.join(args.native_build_path, nuget_dependencies['mklml'])):
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, nuget_dependencies['mklml']) +
|
|
runtimes + ' />')
|
|
|
|
if is_linux() and os.path.exists(os.path.join(args.native_build_path, nuget_dependencies['mklml_1'])):
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, nuget_dependencies['mklml_1']) +
|
|
runtimes + ' />')
|
|
|
|
# Process libiomp5md dependency
|
|
if os.path.exists(os.path.join(args.native_build_path, nuget_dependencies['openmp'])):
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, nuget_dependencies['openmp']) +
|
|
runtimes + ' />')
|
|
|
|
# Process tvm dependency
|
|
if os.path.exists(os.path.join(args.native_build_path, nuget_dependencies['tvm'])):
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, nuget_dependencies['tvm']) +
|
|
runtimes + ' />')
|
|
|
|
# Some tools to be packaged in nightly build only, should not be released
|
|
# These are copied to the runtimes folder for convenience of loading with the dlls
|
|
if args.is_release_build.lower() != 'true' and args.target_architecture == 'x64' and \
|
|
os.path.exists(os.path.join(args.native_build_path, nuget_dependencies['onnxruntime_perf_test'])):
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path,
|
|
nuget_dependencies['onnxruntime_perf_test']) +
|
|
runtimes + ' />')
|
|
|
|
if args.is_release_build.lower() != 'true' and args.target_architecture == 'x64' and \
|
|
os.path.exists(os.path.join(args.native_build_path, nuget_dependencies['onnx_test_runner'])):
|
|
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path,
|
|
nuget_dependencies['onnx_test_runner']) +
|
|
runtimes + ' />')
|
|
|
|
# Process props and targets files
|
|
if is_windowsai_package:
|
|
windowsai_src = 'Microsoft.AI.MachineLearning'
|
|
windowsai_props = 'Microsoft.AI.MachineLearning.props'
|
|
windowsai_targets = 'Microsoft.AI.MachineLearning.targets'
|
|
windowsai_native_props = os.path.join(args.sources_path, 'csharp', 'src', windowsai_src, windowsai_props)
|
|
windowsai_rules = 'Microsoft.AI.MachineLearning.Rules.Project.xml'
|
|
windowsai_native_rules = os.path.join(args.sources_path, 'csharp', 'src', windowsai_src, windowsai_rules)
|
|
windowsai_native_targets = os.path.join(args.sources_path, 'csharp', 'src', windowsai_src, windowsai_targets)
|
|
build = 'build\\{}'.format('uap' if args.is_store_build else 'native')
|
|
files_list.append('<file src=' + '"' + windowsai_native_props + '" target="' + build + '" />')
|
|
# Process native targets
|
|
files_list.append('<file src=' + '"' + windowsai_native_targets + '" target="' + build + '" />')
|
|
# Process rules
|
|
files_list.append('<file src=' + '"' + windowsai_native_rules + '" target="' + build + '" />')
|
|
# Process .net5.0 targets
|
|
if args.target_architecture == 'x64' and not args.is_store_build:
|
|
interop_src = 'Microsoft.AI.MachineLearning.Interop'
|
|
interop_targets = 'Microsoft.AI.MachineLearning.targets'
|
|
windowsai_net50_targets = os.path.join(args.sources_path, 'csharp', 'src', interop_src, interop_targets)
|
|
files_list.append('<file src=' + '"' + windowsai_net50_targets + '" target="build\\net5.0" />')
|
|
|
|
if is_cpu_package or is_cuda_gpu_package or is_dml_package or is_mklml_package:
|
|
# Process props file
|
|
source_props = os.path.join(args.sources_path, 'csharp', 'src', 'Microsoft.ML.OnnxRuntime', 'props.xml')
|
|
target_props = os.path.join(args.sources_path, 'csharp', 'src', 'Microsoft.ML.OnnxRuntime',
|
|
args.package_name + '.props')
|
|
os.system(copy_command + ' ' + source_props + ' ' + target_props)
|
|
files_list.append('<file src=' + '"' + target_props + '" target="build\\native" />')
|
|
files_list.append('<file src=' + '"' + target_props + '" target="build\\netstandard1.1" />')
|
|
|
|
# Process targets file
|
|
source_targets = os.path.join(args.sources_path, 'csharp', 'src', 'Microsoft.ML.OnnxRuntime', 'targets.xml')
|
|
target_targets = os.path.join(args.sources_path, 'csharp', 'src', 'Microsoft.ML.OnnxRuntime',
|
|
args.package_name + '.targets')
|
|
os.system(copy_command + ' ' + source_targets + ' ' + target_targets)
|
|
files_list.append('<file src=' + '"' + target_targets + '" target="build\\native" />')
|
|
files_list.append('<file src=' + '"' + target_targets + '" target="build\\netstandard1.1" />')
|
|
|
|
# Process License, ThirdPartyNotices, Privacy, README
|
|
files_list.append('<file src=' + '"' + os.path.join(args.sources_path, 'LICENSE.txt') + '" target="LICENSE.txt" />')
|
|
files_list.append('<file src=' + '"' + os.path.join(args.sources_path, 'ThirdPartyNotices.txt') +
|
|
'" target="ThirdPartyNotices.txt" />')
|
|
files_list.append('<file src=' + '"' + os.path.join(args.sources_path, 'docs', 'Privacy.md') +
|
|
'" target="Privacy.md" />')
|
|
files_list.append('<file src=' + '"' + os.path.join(args.sources_path, 'docs', 'C_API.md') +
|
|
'" target="README.md" />')
|
|
|
|
files_list.append('</files>')
|
|
|
|
list += files_list
|
|
|
|
|
|
def generate_nuspec(args):
|
|
lines = ['<?xml version="1.0"?>']
|
|
lines.append('<package>')
|
|
generate_metadata(lines, args)
|
|
generate_files(lines, args)
|
|
lines.append('</package>')
|
|
return lines
|
|
|
|
|
|
def is_windows():
|
|
return sys.platform.startswith("win")
|
|
|
|
|
|
def is_linux():
|
|
return sys.platform.startswith("linux")
|
|
|
|
|
|
def validate_platform():
|
|
if not(is_windows() or is_linux()):
|
|
raise Exception('Native Nuget generation is currently supported only on Windows and Linux')
|
|
|
|
|
|
def validate_execution_provider(execution_provider):
|
|
if is_linux():
|
|
if not (execution_provider == 'None' or execution_provider == 'dnnl'
|
|
or execution_provider == 'tensorrt' or execution_provider == 'openvino'):
|
|
raise Exception('On Linux platform nuget generation is supported only '
|
|
'for cpu|cuda|dnnl|tensorrt|openvino execution providers.')
|
|
|
|
|
|
def main():
|
|
# Parse arguments
|
|
args = parse_arguments()
|
|
|
|
validate_platform()
|
|
|
|
validate_execution_provider(args.execution_provider)
|
|
|
|
if (args.is_release_build.lower() != 'true' and args.is_release_build.lower() != 'false'):
|
|
raise Exception('Only valid options for IsReleaseBuild are: true and false')
|
|
|
|
# Generate nuspec
|
|
lines = generate_nuspec(args)
|
|
|
|
# Create the nuspec needed to generate the Nuget
|
|
with open(os.path.join(args.native_build_path, 'NativeNuget.nuspec'), 'w') as f:
|
|
for line in lines:
|
|
f.write(line)
|
|
f.write('\n')
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|