File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
tests/BenchmarkDotNet.IntegrationTests Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 10
10
steps :
11
11
- uses : actions/checkout@v2
12
12
- name : Run
13
- run : ./build.ps1
13
+ shell : cmd
14
+ run : |
15
+ call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
16
+ ./build.bat
14
17
build-linux :
15
18
runs-on : ubuntu-latest
16
19
steps :
Original file line number Diff line number Diff line change @@ -19,8 +19,6 @@ public void WhenBuildTakesMoreTimeThanTheTimeoutTheBuildIsCancelled()
19
19
{
20
20
if ( ! RuntimeInformation . Is64BitPlatform ( ) ) // NativeAOT does not support 32bit yet
21
21
return ;
22
- if ( ContinuousIntegration . IsGitHubActionsOnWindows ( ) ) // no native dependencies installed
23
- return ;
24
22
25
23
// we use NativeAOT on purpose because it takes a LOT of time to build it
26
24
// so we can be sure that timeout = 1s should fail!
Original file line number Diff line number Diff line change @@ -67,9 +67,6 @@ public void MemoryDiagnoserIsAccurate(IToolchain toolchain)
67
67
[ FactDotNetCoreOnly ( "We don't want to test NativeAOT twice (for .NET Framework 4.6.1 and .NET 6.0)" ) ]
68
68
public void MemoryDiagnoserSupportsNativeAOT ( )
69
69
{
70
- if ( ContinuousIntegration . IsGitHubActionsOnWindows ( ) )
71
- return ;
72
-
73
70
MemoryDiagnoserIsAccurate (
74
71
NativeAotToolchain . CreateBuilder ( )
75
72
. UseNuGet (
You can’t perform that action at this time.
0 commit comments