From d469bffcdc224e9c8b0100bed085d8415116f073 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Sat, 15 Aug 2020 14:38:46 +0900 Subject: [PATCH] CI: disable crun on Vagrant to decrease flakiness Signed-off-by: Akihiro Suda --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d45b4ea3..50db099e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -430,7 +430,9 @@ jobs: needs: [project, linters, protos, man] strategy: matrix: - runc: [runc, crun] + # Currently crun is disabled to decrease CI flakiness. + # We can enable crun again when we get a better CI infra. + runc: [runc] steps: - name: Checkout containerd uses: actions/checkout@v2