Merge pull request #6698 from dcantah/skip-windows-critest-tty
Skip tty critest testcase on Windows Server 2022
This commit is contained in:
commit
f72dada151
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@ -339,7 +339,13 @@ jobs:
|
|||||||
Start-Process -FilePath containerd.exe -NoNewWindow -RedirectStandardError true -PassThru
|
Start-Process -FilePath containerd.exe -NoNewWindow -RedirectStandardError true -PassThru
|
||||||
get-process | sls containerd
|
get-process | sls containerd
|
||||||
start-sleep 5
|
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
|
- uses: actions/upload-artifact@v2
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
|
Loading…
Reference in New Issue
Block a user