mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-23 22:13:38 +00:00
* WIP: Re-enable x86 .NET testing in Release pipelines Enabling x86 testing will make sure that ORT packages doesn’t break x86 projects of customers * Remove setting some env variables * Comment out a test failing on x86 builds * More changes * Minor fix * More changes * More changes * s * s * s * Revert minor change * More changes * More changes * More changes 2 * explicitly set platform target * Delete bin and obj folders * Clean output dirs * Add back TargetFramwork * Disable x86 .net framework tests * Skip x86 tests in MKLML pipeline
53 lines
1.9 KiB
Batchfile
Executable file
53 lines
1.9 KiB
Batchfile
Executable file
REM Copyright (c) Microsoft Corporation. All rights reserved.
|
|
REM Licensed under the MIT License.
|
|
|
|
@ECHO ON
|
|
SETLOCAL EnableDelayedExpansion
|
|
|
|
SET TargetFramework=netcoreapp2.1
|
|
SET TargetArch=x64
|
|
SET dn="C:\Program Files\dotnet\dotnet"
|
|
|
|
SET LocalNuGetRepo=%1
|
|
IF NOT "%2"=="" (SET TargetFramework=%2)
|
|
IF NOT "%3"=="" (SET TargetArch=%3)
|
|
IF NOT "%4"=="" (
|
|
SET CurrentOnnxRuntimeVersion=%4
|
|
) ELSE (
|
|
echo "Usage: runtest.bat LocalNuGetRepoPath TargetFramework TargetArch NuGetPackageVersion"
|
|
)
|
|
|
|
IF "%TargetArch%"=="x64" (
|
|
SET RuntimeIdentifier=win-x64
|
|
SET PlatformTarget=x64
|
|
)
|
|
|
|
IF "%TargetArch%"=="x86" (
|
|
SET dn="C:\Program Files (x86)\dotnet\dotnet"
|
|
SET RuntimeIdentifier=win-x86
|
|
SET PlatformTarget=x86
|
|
)
|
|
|
|
ECHO Target Framework is %TargetFramework%
|
|
|
|
REM Update if CUDA lib paths if set
|
|
SET PATH=%CUDA_PATH%\bin;%CUDNN_PATH%\bin;%PATH%
|
|
|
|
IF EXIST test\Microsoft.ML.OnnxRuntime.EndToEndTests\packages RMDIR /S /Q test\Microsoft.ML.OnnxRuntime.EndToEndTests\packages
|
|
IF EXIST test\Microsoft.ML.OnnxRuntime.EndToEndTests\bin RMDIR /S /Q test\Microsoft.ML.OnnxRuntime.EndToEndTests\bin
|
|
IF EXIST test\Microsoft.ML.OnnxRuntime.EndToEndTests\obj RMDIR /S /Q test\Microsoft.ML.OnnxRuntime.EndToEndTests\obj
|
|
|
|
@echo %CurrentOnnxRuntimeVersion%
|
|
%dn% clean test\Microsoft.ML.OnnxRuntime.EndToEndTests\Microsoft.ML.OnnxRuntime.EndToEndTests.csproj
|
|
%dn% restore test\Microsoft.ML.OnnxRuntime.EndToEndTests\Microsoft.ML.OnnxRuntime.EndToEndTests.csproj --configfile .\Nuget.CSharp.config --no-cache --packages test\Microsoft.ML.OnnxRuntime.EndToEndTests\packages --source https://api.nuget.org/v3/index.json --source %LocalNuGetRepo%
|
|
|
|
IF NOT errorlevel 0 (
|
|
@echo "Failed to restore nuget packages for the test project"
|
|
EXIT 1
|
|
)
|
|
|
|
%dn% test test\Microsoft.ML.OnnxRuntime.EndToEndTests\Microsoft.ML.OnnxRuntime.EndToEndTests.csproj --no-restore
|
|
IF NOT errorlevel 0 (
|
|
@echo "Failed to build or execute the end-to-end test"
|
|
EXIT 1
|
|
)
|