-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathb.bat
More file actions
30 lines (23 loc) · 650 Bytes
/
b.bat
File metadata and controls
30 lines (23 loc) · 650 Bytes
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
30
@echo off
echo:
echo:## Starting BUILD...
echo:
dotnet build -p:DevMode=true -v:m -c:Release
if %ERRORLEVEL% neq 0 goto :error
echo:
echo:## Starting TESTS...
echo:
dotnet run --no-build -p:DevMode=true -f:net9.0 -c:Release --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
if %ERRORLEVEL% neq 0 goto :error
dotnet run --no-build -p:DevMode=true -c:Release --project test/FastExpressionCompiler.TestsRunner.Net472
if %ERRORLEVEL% neq 0 goto :error
echo:
echo:## Finished: TESTS
echo:# Finished: ALL
echo:
exit /b 0
:error
echo:
echo:## :-( Failed with ERROR: %ERRORLEVEL%
echo:
exit /b %ERRORLEVEL%