From 242cab0c00b98b2d00e55e7ba394dc2e8da8a722 Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 7 Jul 2024 17:40:22 -0600 Subject: [PATCH] Back to just windows until further debugging can be done. --- .github/workflows/dotnet-core.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index e99126d0d..da75b0fd5 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -18,7 +18,8 @@ jobs: # Turn on fail-fast once we have the tests running on all platforms fail-fast: false matrix: - os: [ ubuntu-latest, windows-latest, macos-latest ] + os: [ windows-latest ] + #os: [ ubuntu-latest, windows-latest, macos-latest ] timeout-minutes: 10 steps: @@ -51,7 +52,7 @@ jobs: sed -i 's/"stopOnFail": false/"stopOnFail": true/g' UnitTests/xunit.runner.json # See https://github.com/microsoft/vstest/issues/2952 for why the --blame stuff below is needed. - # Without it, the test runner crashes on ubuntu (but not Windows)/ + # Without it, the test runner crashes on ubuntu (but not Windows or mac) - name: Test run: | dotnet test --verbosity normal --collect:"XPlat Code Coverage" --settings UnitTests/coverlet.runsettings --diag:logs/logs.txt --blame --blame-crash --blame-hang --blame-hang-timeout 60s --blame-crash-collect-always