From 18e59bc92563087d539849e3a723a57bc4abf85d Mon Sep 17 00:00:00 2001 From: Chris Pietschmann Date: Sun, 23 Nov 2025 11:50:22 -0500 Subject: [PATCH 1/2] Update build-release.yml --- .github/workflows/build-release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 9f38f77..8d892ef 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -31,6 +31,10 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore + - name: Test (diagnostic) + run: | + dotnet --info echo "Build output directories:" ls -la src/SharpVectorOpenAITest/bin/Debug/net8.0 || true ls -la src/SharpVectorTest/bin/Debug/net8.0 || true dotnet test src/SharpVector.sln --no-build --logger:"console;verbosity=detailed" + - name: Run tests with code coverage run: dotnet test --no-build --verbosity normal --results-directory "./TestResults/Coverage/" --collect:"XPlat Code Coverage" From d36a5d9e75c403bcd7a5d4419bce91cf98e3a106 Mon Sep 17 00:00:00 2001 From: Chris Pietschmann Date: Sun, 23 Nov 2025 11:52:28 -0500 Subject: [PATCH 2/2] Update build-release.yml --- .github/workflows/build-release.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 8d892ef..755b51d 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -31,18 +31,17 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore - - name: Test (diagnostic) - run: | - dotnet --info echo "Build output directories:" ls -la src/SharpVectorOpenAITest/bin/Debug/net8.0 || true ls -la src/SharpVectorTest/bin/Debug/net8.0 || true dotnet test src/SharpVector.sln --no-build --logger:"console;verbosity=detailed" + - name: Tests + run: dotnet test --configuration Release --no-build - - name: Run tests with code coverage - run: dotnet test --no-build --verbosity normal --results-directory "./TestResults/Coverage/" --collect:"XPlat Code Coverage" + # - name: Run tests with code coverage + # run: dotnet test --no-build --verbosity normal --results-directory "./TestResults/Coverage/" --collect:"XPlat Code Coverage" - - name: Upload test results artifact - uses: actions/upload-artifact@v4 - with: - name: test-results - path: '**/TestResults/**' + # - name: Upload test results artifact + # uses: actions/upload-artifact@v4 + # with: + # name: test-results + # path: '**/TestResults/**' - name: Performance Test run: dotnet run --project SharpVectorPerformance --configuration Release