Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast authored Oct 15, 2024
1 parent 00cc89f commit 2bb0990
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
continue-on-error: true
shell: pwsh
run: |
dotnet msbuild $env:SOLUTION_PATH -property:Platform=$env:BUILD_PLATFORM -property:Configuration=$env:BUILD_CONFIGURATION -property:MonoRuntime=$env:IS_UBUNTU
dotnet msbuild $env:SOLUTION_PATH -property:Platform=$env:BUILD_PLATFORM -property:Configuration=$env:BUILD_CONFIGURATION -property:MonoRuntime=$IS_UBUNTU
env:
IS_UBUNTU: ${{ steps.configure.outputs.is_ubuntu }}

Expand All @@ -156,9 +156,10 @@ jobs:
continue-on-error: true
shell: pwsh
run: |
& ./scripts/test.ps1 -Configuration:$env:BUILD_CONFIGURATION -GenerateCodeCoverage:$env:GENERATE_CODE_COVERAGE
echo "BUILD_CONFIGURATION=$env:BUILD_CONFIGURATION"
echo "GENERATE_CODE_COVERAGE=$GENERATE_CODE_COVERAGE"
& ./scripts/test.ps1 -Configuration:$env:BUILD_CONFIGURATION -GenerateCodeCoverage:$GENERATE_CODE_COVERAGE
env:
BUILD_CONFIGURATION: ${{ matrix.build-configuration }}
GENERATE_CODE_COVERAGE: ${{ steps.configure.outputs.generate_code_coverage }}

- name: Upload unit test results
Expand Down

0 comments on commit 2bb0990

Please sign in to comment.