File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
build/BenchmarkDotNet.Build/Runners Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,9 @@ jobs:
122122 if : always()
123123 with :
124124 name : test-linux-${{ matrix.os }}
125- path : " **/*.trx"
125+ path : |
126+ "**/*.trx"
127+ "**/*.binlog"
126128 reporter : dotnet-trx
127129 # Upload Artifacts with Unique Name
128130 - name : Upload test results
Original file line number Diff line number Diff line change 33using Cake . Common . IO ;
44using Cake . Common . Tools . DotNet ;
55using Cake . Common . Tools . DotNet . Build ;
6+ using Cake . Common . Tools . DotNet . MSBuild ;
67using Cake . Common . Tools . DotNet . Pack ;
78using Cake . Common . Tools . DotNet . Restore ;
89using Cake . Common . Tools . DotNet . Workload . Install ;
910using Cake . Core ;
1011using Cake . Core . IO ;
12+ using Stubble . Core . Contexts ;
1113using System ;
1214using System . IO ;
1315using System . Linq ;
@@ -103,7 +105,7 @@ public void Build()
103105 {
104106 NoRestore = true ,
105107 DiagnosticOutput = true ,
106- MSBuildSettings = context . MsBuildSettingsBuild ,
108+ MSBuildSettings = context . MsBuildSettingsBuild . EnableBinaryLogger ( ) ,
107109 Configuration = context . BuildConfiguration ,
108110 Verbosity = context . BuildVerbosity
109111 } ;
You can’t perform that action at this time.
0 commit comments