From dd1b0c5dcb0aba7cbeaa9d9fabf12042f200182f Mon Sep 17 00:00:00 2001 From: Jerome Laban Date: Wed, 11 Sep 2024 14:05:59 -0400 Subject: [PATCH] chore: Adjust macos exclusion --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 166b33b..ebad678 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,6 +140,11 @@ jobs: - name: Validate 5.2 Samples app (${{ matrix.config }}) shell: pwsh + + # Skip the macOS release build, the agent does not have + # enough disk space to handle it. + if: matrix.os == 'macos-latest' && matrix.config != 'Release' + run: | & dotnet build -c ${{ matrix.config }} -p:RunAOTCompilation=false -p:WasmShellILLinkerEnabled=false /p:WindowsAppSDKSelfContained=false /p:WindowsPackageType=None -bl:./logs/sample-5.2-${{ matrix.config }}.binlog samples/5.2/Uno52ResizetizerTests/Uno52ResizetizerTests.sln @@ -148,6 +153,7 @@ jobs: # Skip the macOS release build, the agent does not have # enough disk space to handle it. if: matrix.os == 'macos-latest' && matrix.config != 'Release' + shell: pwsh run: | & dotnet build -c ${{ matrix.config }} /p:RunAOTCompilation=false /p:WasmShellILLinkerEnabled=false /p:WindowsAppSDKSelfContained=false /p:WindowsPackageType=None /bl:.\logs\sample-5.2-${{ matrix.config }}-incremental.binlog samples\5.2\Uno52ResizetizerTests\Uno52ResizetizerTests.sln