-
Notifications
You must be signed in to change notification settings - Fork 60
/
CLITests.ps1
29 lines (17 loc) · 1.51 KB
/
CLITests.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Write-Host "-------------------------------------------------------------"
Write-Host "- Run CLI Tests -"
Write-Host "-------------------------------------------------------------"
cd /home/vsts/work/1/s/Ginger/GingerRuntime/bin/Release/net8.0/publish/
Write-Host "******************************************************************************************************************************"
Write-Host "help run"
Write-Host "******************************************************************************************************************************"
dotnet GingerConsole.dll help run
Write-Host "******************************************************************************************************************************"
Write-Host "run simple solution"
Write-Host "******************************************************************************************************************************"
dotnet GingerConsole.dll run -s "/home/vsts/work/1/s/Ginger/GingerCoreNETUnitTest/TestResources/Solutions/CLI" -e "Default" -r "Default Run Set"
Write-Host "******************************************************************************************************************************"
Write-Host "analyze solution"
Write-Host "******************************************************************************************************************************"
dotnet GingerConsole.dll analyze -s "/home/vsts/work/1/s/Ginger/GingerCoreNETUnitTest/TestResources/Solutions/CLI"
exit $exitcode