Skip to content
Prev Previous commit
Next Next commit
remove detailed build logs
  • Loading branch information
baronfel committed Mar 25, 2019
commit 479b2f07f09478d194144cd74a0ce853c21c95f1
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ proto: tools
$(DotNetExe) restore src/fsharp/fsc/fsc.fsproj
$(DotNetExe) build src/buildtools/buildtools.proj -c Proto
$(DotNetExe) build src/fsharp/FSharp.Build/FSharp.Build.fsproj -c Proto
$(DotNetExe) build src/fsharp/fsc/fsc.fsproj -v detailed -c Proto
$(DotNetExe) build src/fsharp/fsc/fsc.fsproj -c Proto

restore:
$(DotNetExe) restore src/fsharp/FSharp.Core/FSharp.Core.fsproj
Expand All @@ -34,13 +34,13 @@ build: proto restore
$(DotNetExe) build -c $(Configuration) src/fsharp/FSharp.Compiler.Private/FSharp.Compiler.Private.fsproj
$(DotNetExe) build -c $(Configuration) src/fsharp/fsc/fsc.fsproj
$(DotNetExe) build -c $(Configuration) src/fsharp/FSharp.Compiler.Interactive.Settings/FSharp.Compiler.Interactive.Settings.fsproj
$(DotNetExe) build -c $(Configuration) -v detailed src/fsharp/fsi/fsi.fsproj
$(DotNetExe) build -c $(Configuration) src/fsharp/fsi/fsi.fsproj
$(DotNetExe) build -c $(Configuration) tests/FSharp.Core.UnitTests/FSharp.Core.UnitTests.fsproj
$(DotNetExe) build -c $(Configuration) tests/FSharp.Build.UnitTests/FSharp.Build.UnitTests.fsproj

test: build
$(DotNetExe) test -c $(Configuration) -v detailed --no-restore --no-build tests/FSharp.Core.UnitTests/FSharp.Core.UnitTests.fsproj -l "trx;LogFileName=$(CURDIR)/tests/TestResults/FSharp.Core.UnitTests.trx"
$(DotNetExe) test -c $(Configuration) -v detailed --no-restore --no-build tests/FSharp.Build.UnitTests/FSharp.Build.UnitTests.fsproj -l "trx;LogFileName=$(CURDIR)/tests/TestResults/FSharp.Build.UnitTests.trx"
$(DotNetExe) test -c $(Configuration) --no-restore --no-build tests/FSharp.Core.UnitTests/FSharp.Core.UnitTests.fsproj -l "trx;LogFileName=$(CURDIR)/tests/TestResults/FSharp.Core.UnitTests.trx"
$(DotNetExe) test -c $(Configuration) --no-restore --no-build tests/FSharp.Build.UnitTests/FSharp.Build.UnitTests.fsproj -l "trx;LogFileName=$(CURDIR)/tests/TestResults/FSharp.Build.UnitTests.trx"

clean:
rm -rf $(CURDIR)/artifacts