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 8de8447 commit 15e2662
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,11 @@ 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)
echo "SOLUTION_PATH=$env:SOLUTION_PATH"
echo "BUILD_PLATFORM=$env:BUILD_PLATFORM"
echo "BUILD_CONFIGURATION=$env:BUILD_CONFIGURATION"
echo "IS_UBUNTU=$env:IS_UBUNTU"
dotnet msbuild $env:SOLUTION_PATH -property:Platform=$env:BUILD_PLATFORM -property:Configuration=$env:BUILD_CONFIGURATION -property:MonoRuntime=$env:IS_UBUNTU
env:
IS_UBUNTU: ${{ steps.configure.outputs.is_ubuntu }}

Expand All @@ -158,7 +162,7 @@ jobs:
run: |
echo "BUILD_CONFIGURATION=$env:BUILD_CONFIGURATION"
echo "GENERATE_CODE_COVERAGE=$env:GENERATE_CODE_COVERAGE"
& ./scripts/test.ps1 -Configuration:$(env:BUILD_CONFIGURATION) -GenerateCodeCoverage:$(env:GENERATE_CODE_COVERAGE)
& ./scripts/test.ps1 -Configuration "$env:BUILD_CONFIGURATION" -GenerateCodeCoverage "$env:GENERATE_CODE_COVERAGE"
env:
GENERATE_CODE_COVERAGE: ${{ steps.configure.outputs.generate_code_coverage }}

Expand Down

0 comments on commit 15e2662

Please sign in to comment.