From e96e0e2c989d01dbe6bd6eaeadb7ce9e80953558 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Mon, 10 Jun 2024 13:54:52 +0200 Subject: [PATCH] ci: test install on linux without containerd --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e64e6e2..1f3158d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -153,10 +153,21 @@ jobs: build-linux: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + containerd: + - containerd-system + - containerd-tarball steps: - name: Checkout uses: actions/checkout@v4 + - + name: Uninstall containerd + if: matrix.containerd == 'containerd-tarball' + run: | + sudo apt-get remove -y containerd.io - name: Set up Docker uses: ./