Disable use of cargo2junit because bug rust/99261 (#1061)

This commit is contained in:
Ricardo Espinoza 2022-07-15 17:06:52 -07:00 коммит произвёл GitHub
Родитель dd6e9fe4d9
Коммит bd22f3ea09
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -6,7 +6,9 @@ $script:allOk = $true;
Push-Location $PSScriptRoot
# If running in CI, use cargo2junit to expose unit tests to the
# PublishTestResults task.
if ($IsCI) {
if ($false -and $IsCI) {
# This path is disabled because of the bug below:
# https://github.com/rust-lang/rust/issues/99261
cargo install cargo2junit
$testJson = cargo test -- -Z unstable-options --format json;
$script:allOk = $script:allOk -and $LASTEXITCODE -eq 0;