This repository has been archived by the owner on Sep 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 347
/
make.cmd
96 lines (76 loc) · 1.86 KB
/
make.cmd
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
@echo off
setlocal
set PATH=%PATH%;%ProgramFiles(x86)%\MSBuild\14.0\Bin\;%WINDIR%\Microsoft.NET\Framework\v4.0.30319;%WINDIR%\Microsoft.NET\Framework\v3.5
:getopts
if "%1"=="" (goto :default) else (goto :%1)
goto :exit
:default
goto :debug
:debug
set _target=Build
set _flavour=Debug
goto :main
:clean-debug
set _target=Clean
set _flavour=Debug
goto :main
:stage-debug
set _target=Stage
set _flavour=Debug
goto :main
:release
set _target=Build
set _flavour=Release
goto :main
:clean-release
set _target=Clean
set _flavour=Release
goto :main
:stage-release
set _target=Stage
set _flavour=Release
goto :main
:package-release
set _target=Package
set _flavour=Release
goto :main
:clean
echo No target 'clean'. Try 'clean-debug' or 'clean-release'.
goto :exit
:stage
echo No target 'stage'. Try 'stage-debug' or 'stage-release'.
goto :exit
:package
echo No target 'package'. Try 'package-release'.
goto :exit
:test
Test\test-ipy-tc.cmd /category:Languages\IronPython\2.X
goto :exit
:testall
Test\test-ipy-tc.cmd /all /runlong
goto :exit
:testalldisabled
Test\test-ipy-tc.cmd /all /runlong /rundisabled
goto :exit
:distclean
msbuild /t:DistClean /p:BaseConfiguration=Release /verbosity:minimal /nologo
msbuild /t:DistClean /p:BaseConfiguration=Debug /verbosity:minimal /nologo
goto :main
:main
msbuild /t:%_target% /p:BaseConfiguration=%_flavour% /verbosity:minimal /nologo
goto :exit
:ngen-release
if "%DLR_BIN%"=="" (
echo "You must set DLR_BIN before running this command"
exit /b -1
)
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe install %DLR_BIN%\ipy.exe
goto :exit
:core
dotnet restore
set _flavour=Release
dotnet build -c %_flavour% -o bin\netcoreapp1.0%_flavour% -f netcoreapp1.0 .\Languages\IronPython\IronPythonConsole
msbuild Test\ClrAssembly\ClrAssembly.csproj /p:Configuration=%_flavour%
copy bin\%_flavour%\rowantest* bin\netcoreapp1.0%_flavour%
:exit
endlocal