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