47 строки
2.7 KiB
Makefile
47 строки
2.7 KiB
Makefile
Configuration ?= release
|
|
DotNetVersion = `cat DotnetCLIToolsVersion.txt`
|
|
DotNetToolPath = $(CURDIR)/artifacts/toolset/dotnet
|
|
DotNetExe = "$(DotNetToolPath)/dotnet"
|
|
|
|
all: proto restore build test
|
|
|
|
tools:
|
|
$(CURDIR)/scripts/dotnet-install.sh --version $(DotNetVersion) --install-dir "$(DotNetToolPath)"
|
|
|
|
proto: tools
|
|
$(DotNetExe) build-server shutdown
|
|
$(DotNetExe) restore src/buildtools/buildtools.proj
|
|
$(DotNetExe) restore src/fsharp/FSharp.Build/FSharp.Build.fsproj
|
|
$(DotNetExe) restore src/fsharp/fsc/fsc.fsproj
|
|
$(DotNetExe) build src/buildtools/buildtools.proj -c Proto
|
|
$(DotNetExe) build src/fsharp/FSharp.Build/FSharp.Build.fsproj -f netstandard2.0 -c Proto
|
|
$(DotNetExe) build src/fsharp/fsc/fsc.fsproj -f netcoreapp2.1 -c Proto
|
|
|
|
restore:
|
|
$(DotNetExe) restore src/fsharp/FSharp.Core/FSharp.Core.fsproj
|
|
$(DotNetExe) restore src/fsharp/FSharp.Build/FSharp.Build.fsproj
|
|
$(DotNetExe) restore src/fsharp/FSharp.Compiler.Private/FSharp.Compiler.Private.fsproj
|
|
$(DotNetExe) restore src/fsharp/fsc/fsc.fsproj
|
|
$(DotNetExe) restore src/fsharp/FSharp.Compiler.Interactive.Settings/FSharp.Compiler.Interactive.Settings.fsproj
|
|
$(DotNetExe) restore src/fsharp/fsi/fsi.fsproj
|
|
$(DotNetExe) restore tests/FSharp.Core.UnitTests/FSharp.Core.UnitTests.fsproj
|
|
$(DotNetExe) restore tests/FSharp.Build.UnitTests/FSharp.Build.UnitTests.fsproj
|
|
|
|
build: proto restore
|
|
$(DotNetExe) build-server shutdown
|
|
$(DotNetExe) build -c $(Configuration) -f netstandard2.0 src/fsharp/FSharp.Core/FSharp.Core.fsproj
|
|
$(DotNetExe) build -c $(Configuration) -f netstandard2.0 src/fsharp/FSharp.Build/FSharp.Build.fsproj
|
|
$(DotNetExe) build -c $(Configuration) -f netstandard2.0 src/fsharp/FSharp.Compiler.Private/FSharp.Compiler.Private.fsproj
|
|
$(DotNetExe) build -c $(Configuration) -f netcoreapp2.1 src/fsharp/fsc/fsc.fsproj
|
|
$(DotNetExe) build -c $(Configuration) -f netstandard2.0 src/fsharp/FSharp.Compiler.Interactive.Settings/FSharp.Compiler.Interactive.Settings.fsproj
|
|
$(DotNetExe) build -c $(Configuration) -f netcoreapp2.1 src/fsharp/fsi/fsi.fsproj
|
|
$(DotNetExe) build -c $(Configuration) -f netcoreapp2.0 tests/FSharp.Core.UnitTests/FSharp.Core.UnitTests.fsproj
|
|
$(DotNetExe) build -c $(Configuration) -f netcoreapp2.0 tests/FSharp.Build.UnitTests/FSharp.Build.UnitTests.fsproj
|
|
|
|
test: build
|
|
$(DotNetExe) test -f netcoreapp2.0 -c $(Configuration) --no-restore --no-build tests/FSharp.Core.UnitTests/FSharp.Core.UnitTests.fsproj -l "trx;LogFileName=$(CURDIR)/tests/TestResults/FSharp.Core.UnitTests.coreclr.trx"
|
|
$(DotNetExe) test -f netcoreapp2.0 -c $(Configuration) --no-restore --no-build tests/FSharp.Build.UnitTests/FSharp.Build.UnitTests.fsproj -l "trx;LogFileName=$(CURDIR)/tests/TestResults/FSharp.Build.UnitTests.coreclr.trx"
|
|
|
|
clean:
|
|
rm -rf $(CURDIR)/artifacts
|