diff --git a/.github/workflows/test-windows-iis.yml b/.github/workflows/test-windows-iis.yml index eaa80824b..909c5e1a0 100644 --- a/.github/workflows/test-windows-iis.yml +++ b/.github/workflows/test-windows-iis.yml @@ -31,6 +31,12 @@ jobs: test-iis: runs-on: windows-latest + # disable IIS on CI for now. + # Run locally and started failing randomly on github actions + # Could be because of plethora of reasons including no disk space + # Requires longer investigation + if: ${{ false }} + steps: - uses: actions/checkout@v3 - name: Bootstrap Action Workspace diff --git a/build/scripts/Build.fs b/build/scripts/Build.fs index 79442de1b..bcd1deec3 100644 --- a/build/scripts/Build.fs +++ b/build/scripts/Build.fs @@ -148,7 +148,7 @@ module Build = /// Builds the CLR profiler and supporting .NET managed assemblies let BuildProfiler () = dotnet "build" (Paths.ProfilerProjFile "Elastic.Apm.Profiler.Managed") - Cargo.Exec [ "make"; "build-release"; ] + Cargo.Exec [ "make"; "build-release"; "--disable-check-for-update"] /// Publishes all projects with framework versions let Publish targets = @@ -185,7 +185,7 @@ module Build = if isWindows && not isCI then msBuild "Clean" aspNetFullFramework let CleanProfiler () = - Cargo.Exec ["make"; "clean"] + Cargo.ExecWithTimeout ["make"; "clean"; "--disable-check-for-update"] (TimeSpan.FromMinutes 10) /// Restores all packages for the solution let ToolRestore () =