diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60fe8fc83ee83..5093c990e1333 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -339,7 +339,13 @@ jobs: Start-Process -FilePath containerd.exe -NoNewWindow -RedirectStandardError true -PassThru get-process | sls containerd start-sleep 5 - critest.exe --runtime-endpoint=npipe://.//pipe//containerd-containerd --test-images-file='${{env.CRI_TEST_IMAGES}}' --report-dir='${{github.workspace}}/critestreport' + # This test is exceedingly flaky only on ws2022 so skip for now to keep CI happy. + # Info: https://github.com/containerd/containerd/issues/6652 + if( '${{ matrix.os }}' -eq 'windows-2022' ) + { + $skip = "-ginkgo.skip=runtime should support exec with tty=true and stdin=true" + } + critest.exe --runtime-endpoint=npipe://.//pipe//containerd-containerd --test-images-file='${{env.CRI_TEST_IMAGES}}' --report-dir='${{github.workspace}}/critestreport' $skip - uses: actions/upload-artifact@v2 if: always() with: