this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Break up the GHA logs

+7 -4
+7 -4
.github/workflows/windows.yml
··· 80 80 $failed = $false 81 81 opam update 82 82 Foreach ($pkg in $pkgs) { 83 - opam install --confirm-level=unsafe-yes "$pkg" 83 + Write-Host "::group::Testing `e[1;34m$pkg`e[0m" 84 + opam install --color=always --confirm-level=unsafe-yes "$pkg" 85 + Write-Host "::endgroup::" 84 86 switch ($LASTEXITCODE) { 85 87 0 { Break } 86 - 5 { Write-Host "$pkg is not installable. Skip."; Break } # TODO: Remove when https://github.com/ocaml/opam/issues/6017 is fixed 87 - 20 { Write-Host "$pkg is not installable. Skip."; Break } 88 - 31 { Write-Host "$pkg failed to build."; $failed = $true; Break } 88 + 5 { Write-Host "$pkg is not installable. `e[1;33mSkip`e[0m."; Break } # TODO: Remove when https://github.com/ocaml/opam/issues/6017 is fixed 89 + 20 { Write-Host "$pkg is not installable. `e[1;33mSkip`e[0m."; Break } 90 + 31 { Write-Host "`e[1;31m$pkg failed to build`e[0m."; $failed = $true; Break } 89 91 default { throw "Unexpected error $_" } 90 92 } 93 + Write-Host 91 94 } 92 95 if ($failed) { 93 96 throw "build failed"