File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,19 +21,19 @@ jobs:
2121 java-version : ' 17'
2222
2323 - uses : android-actions/setup-android@v2
24-
25- - name : Restore workloads with verbose logging
26- run : dotnet workload restore --verbosity:detailed --ignore-failed-sources
27- env :
28- DOTNET_CLI_TELEMETRY_PROFILE : " True "
24+
25+ - name : Install specific workloads
26+ run : |
27+ dotnet workload install android --skip-update
28+ dotnet workload install wasm-tools --skip-update
2929 working-directory : ./src/Avalonia.Samples/
3030
3131 - name : Build all solutions with diagnostics
3232 run : |
3333 $solutions = Get-ChildItem -Path "./src/Avalonia.Samples" -Filter "*.sln*" -Recurse | Select-Object -ExpandProperty FullName
3434 foreach ($solution in $solutions) {
3535 Write-Host "=== Restoring: $solution ==="
36- dotnet restore $solution --verbosity:detailed -- ignore-failed-sources
36+ dotnet restore $solution --ignore-failed-sources --verbosity:detailed
3737 Write-Host "=== Building: $solution ==="
3838 dotnet build $solution --no-restore --verbosity:detailed
3939 }
You can’t perform that action at this time.
0 commit comments